Oct 06
<html>

   <head>

       <title>Conditional CSS</title>

       <style type="text/css">

           body

           {

               color:blue;

           }

       </style>

       <!--[if IE 7]>

        <style type="text/css">

        body {

            background-color:red;

        }

        </style>

        <![endif]-->

   </head>

   <body>

       <p>

           Conditional CSS

       </p>

   </body>

</html>