Problem Statement
If two CSS rules conflict, how can you determine which one applies?
Explanation
The browser applies the rule with higher specificity. If equal, the later one in the CSS file wins. You can inspect elements in DevTools to see which rules are crossed out or overridden.
Code Solution
SolutionRead Only
/* Example */ #title {color:red;} .heading {color:blue;} /* red wins */