Commentaires conditionnels IE et Hacks CSS

Récapitulatif des commentaires conditionnels Internet Explorer et des Hacks CSS permettant de cibler des navigateurs spécifiques.

Commentaires Conditionnels

<!--[if IE]>Toutes versions<![endif]-->

<!--[if IE 6]>IE 6<![endif]-->

<!--[if gt IE 7]>IE 8.0 et plus <![endif]-->

<!--[if gte IE 7]>IE 7.0 et plus <![endif]-->

<!--[if lt IE 8]>IE inférieur à IE 8<![endif]-->

<!--[if lte IE 8]>IE 8 et inférieurs<![endif]-->

 

Hacks CSS

Chrome et Safari 3 (Webkit browsers)
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .classe {
  width: 600px;
  }
}

 

Plain text

By submitting this form, you accept the Mollom privacy policy.