0
CSS Html Question 2
Question: Why is "New Developments" orange and not purple? <!doctype html> <style> .headline{ color:orange; } article{ color:purple; font-style: normal; } </style> <div> <article> <h4 class="headline">New Developments</h4> </article> </div> </html>
1 Respuesta
+ 10
Class selectors (.headline) are more specific than type selectors (article).
About specificity:
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity