ID Selector Specificity

ID selectors have higher specificity than classes.

Preview

Code

<style>
.text{
color:blue;
}

#title{
color:green;
}
</style>

<p id="title" class="text">This paragraph becomes green.</p>

More CSS Specificity Examples (8)