Comme l'explique Samuel Le Morvan dans son billet Le Hack CSS !important, le non respect de la directive !important par IE peut être exploité facilement en CSS pour, par exemple, n'afficher des infos que pour IE, explications :

Dans la partie gauche, j'ai ajouté le code HTML suivant :

   
<div id="ie-user">
  <h2>Promotions</h2>
  <a href="http://www.mozilla.org/products/firefox/" title="Get Firefox - The Browser, Reloaded">
    <img src="http://www.mozilla.org/products/firefox/buttons/getfirefox_large2.png" alt="Get Firefox" height="60" width="178">
  </a>
</div>

Et dans la CSS, ceci :

#sidebar #ie-user {
   display: none !important;
   display: inline;   
}    

Si vous utilisez un navigateur qui respecte cette directive, vous ne voyez pas l'image, sinon vous voyez ça :

Promotions

Get Firefox