In developing a web application, I'm having issues identifying the source of CSS style overrides. Based on the answer to this question: Chrome Developer Tools: How to find out what is overriding a CSS rule?, I attempted to identify the source of the computed style using Chrome's integrated dev tools.
I expected the border-left-width property to be 2px, as explicitly defined in the page_not_found class rule. The computed style dialog shows the following:
Clearly indicating:
- The computed value is
0px - The computed value was derived from a single style rule defining an intended value of
2px
Clearly, 0px != 2px, so where is this computed value coming from?
