Chrome Developer Tools: How to find out what is overriding a CSS rule?

浪尽此生 提交于 2019-11-26 06:57:34

问题


Well, this is pretty straightforward. If Chrome\'s Developer Tools is showing me that a style is overridden, how to see what CSS rule is overriding it?

I want to know if is there anything like \"Show me what overrides this\".

OBS: Please, don\'t point me to Firebug.


回答1:


Use the Computed Style panel of the element inspector. Expand the property of interest to see the list of applicable rules, and which one won.




回答2:


You can simply look at the ones with the same name which aren't striked out, remember the listing is by importance.

Or you can view the computed styles. They will be the actually applied styles.




回答3:


crtrl + shift + c and inspect the element. Then find the style without a line through it, in the box in the down right corner.

the override is in most cases at the top (and without a line through it, as this style is the "winning" one).



来源:https://stackoverflow.com/questions/13867088/chrome-developer-tools-how-to-find-out-what-is-overriding-a-css-rule

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!