How to i can use this
<!--[if lt IE 8]> <style type='text/css'> #header ul#h-menu li a{font-weight:normal!important} </style> <![endif]-->
if i remove <!--[if lt IE 8]><![endif]-->
Above code 'll run good in IE 8 but if i dont it dont run.
Help me with fixed IE, if i want in above code in all IE version,.
i want code #header ul#h-menu li a{font-weight:normal!important}
run only in IE
The lt in the above statement means less than, so 'if less than IE 8'.
For all versions of IE you can just use
or for all versions above ie 6 for example.
Where gt is 'greater than'
If you would like to write specific styles for versions below and including IE8 you can write
where lte is 'less than and equal' to
will apply that style in all versions of IE.