i have a problem in using IE. Everthing is good in using firefox but IE 6 seems to be creating more trouble for css. so i used
<![if !IE]>
<link href="ie6.css" rel="stylesheet">
<![endif]>
To fix a problem but it doesnot work. Anything wrong in this code? Because when i altered this css nothing has changed in IE.
Well, your conditional comment says “if not IE”.
Also note that you’re using a downlevel-revealed conditional comment, which means every browser (except IE) will include the extra CSS file.
Use
<!--[if IE]><![endif]-->instead.