views:

521

answers:

4

Recently, I started maintaining a web application which unfortunately works only with IE 6. Most of the issues are related to CSS.

Is there any tool which can help me standardize the CSS classes to work with both IE 6 and IE 7? I understand I have to go through standards but I need something to start with quickly.

Firebug can help me to some extend in identifying the CSS classes related to the UI elements (if the page renders on firefox). But, I was looking for something more like an advisor tool. If you have some experience to share, please feel free.

+3  A: 

Check out Dean Edwards' IE7

Jason Bunting
let me check it out. Thanks..
Gulzar
+3  A: 

Tredosoft's Multiple IEs is a good compare/contrast. You go ahead and upgrade to IE7, then install this (selecting just the IE6 option, unless you need all of 5.5/5.0/4.0/etc.), and you can see the pages simultaneously in both browsers. This will help you figure out what has to be conditionalized/hacked.

Also, the IE Developer Toolbar, although not as good as Firebug et. al., will at least let you see in IE what the browser thinks is happening with your styling.

John Dunagan
Another useful standalone IE 6 : http://dotnetslackers.com/Community/blogs/haissam/archive/2007/05/24/IE6-_2600_-IE7-On-Same-Machine_21002100_.aspx . This is just a zip file with IE6. No installation required.
Gulzar
+5  A: 

Try out SuperPreview or the whole package (Expression Web announced at Mix)..

SuperPreview is a new free standalone application from Microsoft (still in beta) which enables you to see how your websites will look across different versions of Internet Explorer making migration from IE6 to 7 and 8 much easier than before, without have to start up a Virtual Machine to run IE6, or have a separate computer dedicated to running IE6.

Gulzar
+1  A: 

Sometimes you need to introduce a little hack for IE6 and IE7 like removing double margin and I use the following pure CSS code

css-selector { code for all browsers }

*html css-selector {code for IE6 browser }

*+html css-selector {code for IE7 browser }

it is not a tool that you expecting, but may be it would helpfull

se_pavel