Safari/Chrome Developer Tools indicate that a CSS rule is overridden by something else by striking it through, as shown in the image.

Striked-through CSS rule

Sometimes I find myself in a situation where I can not figure out from the CSS files what causes this rule to be ignored. But surely Safari itself must know as it strikes it through.

Is there a way to know what overrides such a rule?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Look at the one which isn't striked out, higher up on the list.

Alternatively, view the computed styles. They will be the definitive applied styles.

link|improve this answer
Thank you, I had missed that Safari orders the blocks by the importance, not CSS order. My case was that longer selector (table.class td) got higher than shorter although more specific selector (.class) that matches single td. – Laas May 4 '11 at 0:23
feedback

Developer Tools will list all rules for an element. Just read through all the CSS rules that apply, and check for a non-struck-through one with the same name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.