Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
All she is saying to make a conditional comment targeting IE6 that links a stylesheet only to that browser. This code would go in the <head></head> of your document:
<!--[if lte IE 6]><link href="css/ie6.css" type="text/css" rel="stylesheet" /><![endif]-->
Then, in that document:
Code:
div#productTable {
height: 1%;
}
That't it!
Personally, I avoid CCs and use the underscore hack to target IE6, but that is another story.
Last edited by wayfarer07; 04-03-2008 at 04:17 PM..
|