Conditional CSS

From Wiki @ Karl Jones dot com
Jump to: navigation, search

In Cascading Style Sheets, conditional CSS refers to CSS rules which are conditional: the rules apply under some conditions, but not others.

Internet Explorer conditional CSS

Internet Explorer has its own conditional CSS, which can apply to all versions of Internet Explorer, or certain specified versions.

All other browsers will ignore these conditional rules.

In the example below, if lt IE 9 indicates that Internet Explorer which is less than version nine (lt IE 9) should use the external style sheets:

 <head>
<!--[if lt IE 9]>
  <link rel="stylesheet" type="text/css" href="sitename.css">
 <![endif]-->

See also