[Solved] browser specific css for internet explorer 7,8,9 [closed]


Use conditional comments:

<!--[if lte IE 8]><link/><![endif]-->

More info: http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx

For just one IE version use

<!--[if IE 9]><link href="https://stackoverflow.com/questions/15355735/ie9.css" rel="stylesheet" type="text/css"/><![endif]-->

Change the version (“9”) to your desire. If you want to address all versions less than or equal to a specific one, use:

<!--[if lte IE 9]><link href="https://stackoverflow.com/questions/15355735/ie0-9.css" rel="stylesheet" type="text/css"/><![endif]-->

This will address all versions from 0 to 9, but not 10. For more detailed info please check the link I posted.

3

solved browser specific css for internet explorer 7,8,9 [closed]