IE6,IE7等其它IE和firfox等標準瀏覽器css hack簡單兼容方

字號:


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
    <html lang="ru">
    <head>
    <title></title>
    <style type="text/css">
    .test
    {
    color:#FF0000;/*Firefox以及其他瀏覽器看*/
    #color:#0000FF;/*IE7IE8、IE9*/
    _color:#FFFF00;/*IE6以及更老的版本*/
    }
    </style>
    </head>
    <body>
    <p>
    color:#FF0000;/*Firefox以及其他瀏覽器看*/<br />
    #color:#0000FF;/*IE7IE8、IE9*/<br />
    _color:#FFFF00;/*IE6以及更老的版本*/
    </p>
    </body>
    </html>