If two CSS classes share the same derived class, how does CSS determine the correct class to apply?
Consider the following example:
.ClassA.Left {}
.ClassB.Left {}
.Left {}
Given that the class 'Left' can be assigned to multiple elements, how can I ensure it is being applied correctly? What rules govern the specificity of the 'Left' class binding?