Take a look at this snapshot of a webpage I'm currently designing in Chrome Developer Tools:
https://i.sstatic.net/SB00j.png
The primary rule in the 'Matched CSS Rules' section indicates that the width of the element should be 160px.
However, the actual width displayed in 'Computed Style' is 0px.
If you click on the '0px', it once again displays the rule specifying a width of 160px. So why isn't it reflecting this change?
What could be causing the width to be set as 0px without being visible in Chrome Developer Tools?
Any suggestions on how to troubleshoot this issue?