07 Apr, 2009

Conditional comments, allemaal

Categoriën: hack |IE5 |IE6 |IE7 |IE8 |valid

Conditional comments kunnen je helpen bij het maken van CSS voor enkel één of meerdere versies van Microsoft Internet Explorer. Enkel deze browser kan de code tussen de conditionele comments lezen en dus uitvoeren.

HTML

Voeg volgende code eender waar in je HTML document, enkel de betreffende browser versie zal de code uitvoeren.

<!--[if IE]>
This is Internet Explorer
<![endif]-->
<!--[if IE 5]>
this is Internet Explorer 5
<![endif]-->
<!--[if IE 5.0]>
this is Internet Explorer 5.0
<![endif]-->
<!--[if IE 5.5]>
this is Internet Explorer 5.5
<![endif]-->
<!--[if IE 6]>
this is Internet Explorer 6
<![endif]-->
<!--[if IE 7]>
this is Internet Explorer 7
<![endif]-->
<!--[if gte IE 5]>
this is Internet Explorer 5 and up
<![endif]-->
<!--[if lt IE 6]>
this is Internet Explorer lower than 6
<![endif]-->
<!--[if lte IE 5.5]>
this is Internet Explorer lower or equal to 5.5
<![endif]-->
<!--[if gt IE 6]>
this is Internet Explorer greater than 6
<![endif]-->

gt groter dan
lte minder of gelijk

Gerelateerde Snippets

2 Reacties op "Conditional comments, allemaal"

Henry

January 19th, 2010 at 15:42

1

Merci, had ik juist nodig.

Conditionele body tag voor IE | Css Snippets

February 27th, 2010 at 08:16

2

[...] kan CSS via conditionele comments (zie eerdere Snippet) toevoegen, maar je kan in plaats van een extra CSS bestand, conditioneel een extra class toevoegen [...]

Reactie formulier


Advertenties

Volgende nieuwe Snippet:

  • Momenteel niks gepland.