Thread: <!--[if IE 6]>
View Single Post
02-28-2007, 01:02 PM
#11
allaire is offline allaire
allaire's Avatar
Status: Member
Join date: Nov 2006
Location: Quebec, Canada
Expertise:
Software:
 
Posts: 239
iTrader: 1 / 100%
 

allaire is on a distinguished road

Send a message via AIM to allaire Send a message via MSN to allaire

  Old

was not working for me also when I needed that IE 6 conditional comment
but this one good:
HTML Code:
	<!--[if IE]>
	<link rel="stylesheet" href="ie.css" type="text/css" media="all" />
	<![endif]-->
so, if you only want apply something to IE 6, just use the litle IE6 hacks in your ie.css file.

HTML Code:
* html #myID{};
The best way I've found...