Class Selector Specificity
Preview
Code
<style>
p{
color:red;
}
.text{
color:blue;
}
</style>
<p class="text">This paragraph becomes blue.</p>
<style>
p{
color:red;
}
.text{
color:blue;
}
</style>
<p class="text">This paragraph becomes blue.</p>