internet explorer - CSS for IE 8 Only -


i need style items ie 8. if this:

<!--[if ie 8]><link rel="stylesheet" href="mystyleie8.css" type="text/css" media="screen, projection"/><![endif]--> 

and do:

<!--[if ie 7]><link rel="stylesheet" href="mystyleie7.css" type="text/css" media="screen, projection"/><![endif]--> 

what happen? found link previous question implied <!--[if ie 8]> means "if ie 8 or lower". mean using <!--[if ie 8]> overwrite <!--[if ie 7]> css? program know use <!--[if ie 8]> ie 8 , <!--[if ie 7]> ie 7?

it not mean "if ie 8 or lower".

<!--[if ie 8]> 

means if ie8

<!--[if lt ie 8]> 

if less ie 8

<!--[if lte ie 8]> 

if less or equal ie 8


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -