up vote 4 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

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.

link|improve this answer
feedback

Check out Dean Edwards' IE7

link|improve this answer
let me check it out. Thanks.. – Gulzar Nazim Nov 12 '08 at 15:23
feedback

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.

link|improve this answer
Another useful standalone IE 6 : dotnetslackers.com/Community/blogs/haissam/archive/2007/05/24/…2600-IE7-On-Same-Machine_21002100_.aspx . This is just a zip file with IE6. No installation required. – Gulzar Nazim Nov 12 '08 at 16:00
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.