Is it possible to debug CSS?

后端 未结 9 874
野趣味
野趣味 2021-01-01 01:44

I am a CSS newbie. Is there a tool that can help debug CSS styles applied to a web page.

How does one generally debug CSS and resolve issues when some elements on t

9条回答
  •  耶瑟儿~
    2021-01-01 02:06

    By browser:

    • Firefox there is a plug in module called Firebug. It is easy to install and very powerful. It is even better when combined with 'Web Developer' for Firefox.

    • Internet Explorer has a Developer Toolbar, which is not as good as Firebug but good enough to check things still work in IE. Additionally there is a tool called IE DOM inspector. There is also a version of Firebug for IE caled Firebug Lite.

    • Google Chrome comes with built in tools similar to Firebug. See the 'tools->developer' option in the pull down menu to the right of the address bar. This allows you to see the css rules used by each element. It also has Javascript debugging support.

    • Safari uses a tool called Web Inspector.

    • Opera has a built-in utility called Dragonfly.

提交回复
热议问题