Different style sheets for different browsers
I wrote my site using HTML and CSS for the Firefox browser. I linked another external style sheet that used just a couple of changes and it looks great in IE 7. Of course it looks like garbage in IE 6.
If I use the standard
<!--[if IE 6]> <link rel="stylesheet" type="text/css" href="iespecific.css" /> <![endif]-->
it will use another style sheet for all versions of IE 6.
Does anyone know if there were versions of IE 6 that were less CSS retarded than the others? In other words, are there later versions of IE 6 that act more like IE 7. I'm trying to figure out if I should just go to my school and jump on an old computer that uses IE6 and write one new style sheet to link using "if IE 6" OR if I'm going to need to write a new style sheet for every single specific version of IE6 which would totally suck.
|