Problem Statement
Which has the highest priority when multiple CSS rules apply to the same element?
Explanation
Inline CSS has the highest priority because it is applied directly to the element. Then internal, then external. Understanding priority helps in debugging style conflicts in real projects.
Code Solution
SolutionRead Only
<p style="color: red;">This text is red</p>
