When an element has two classes assigned to it and the CSS for the two classes conflict with each other, which one takes precedence? Is there a method to determine which one will be used?
For instance:
<p class='red small'>Some Text Here</p>
using the following CSS:
.red { color:#ff0000; font-size:200%; }
.small { font-size:50%; }
In this case, the text would appear red, but what size would it be? And is there a reliable way to control this across different browsers?