-4

my website looks good in Chrome and Firefox but in IE, everything is in messy. I just want to figure out which css is not good.

So is there any develop tool in IE likes Firebug in Firefox or develop tool in Chrome.

Spudley
  • 166,037
  • 39
  • 233
  • 307
Hypnoz
  • 1,115
  • 4
  • 15
  • 27
  • 1
    http://stackoverflow.com/questions/56615/does-ie7-have-a-developer-mode-or-plugin-like-firefox-chrome-safari?rq=1 or http://stackoverflow.com/questions/361635/debugging-javascript-in-ie7 or a billion of the same questions on stack. Its better to search stack before posting a question. – John Riselvato Sep 05 '12 at 20:42
  • 2
    Try googling "Is there any develop tool for IE" before you ask StackOverflow. – JohnnyK Sep 05 '12 at 20:43
  • what version of IE do you use? – Muthukumar Sep 05 '12 at 20:43
  • You can also use firebug lite https://getfirebug.com/firebuglite – arjuncc Sep 06 '12 at 08:41

5 Answers5

3

IE8 and up includes a "Developer Tools" feature, which can be accessed via F12, just like Firebug.

It isn't anything like as good as Firebug or the Chrome Dev tools, but it does exist, and is useful for debugging your code.

By the way, one of the main reasons for sites that look good in other sites to break badly in IE is if you haven't specified a valid DOCTYPE. This will throw the site into "Quirks mode". This can be resolved by adding <!DOCTYPE html> as the first line of the HTML code. IE's dev tools window will show you if the page is in quirks mode -- this is probably the first thing you should check.

Spudley
  • 166,037
  • 39
  • 233
  • 307
2

Latest IE version includes a developer tool. If im not mistaken you can open it by pressing F12.

Andreas Hagen
  • 2,335
  • 2
  • 19
  • 34
0

Internet Explorer Developer Toolbar:

http://www.microsoft.com/en-us/download/details.aspx?id=18359

The Microsoft Internet Explorer Developer Toolbar provides a variety of tools for quickly creating, understanding, and troubleshooting Web pages.

John Riselvato
  • 12,854
  • 5
  • 62
  • 89
0

Try Internet Explorer development tools (since 8 version)

http://msdn.microsoft.com/en-us/library/dd565628%28v=vs.85%29.aspx

fcortes
  • 1,338
  • 3
  • 11
  • 26
-1

Google Web Toolkit is another alternative

https://developers.google.com/web-toolkit/doc/latest/DevGuideIE9

Hespino
  • 11
  • 1