各瀏覽器css差異積累(不斷更新中)

來源:互聯網
上載者:User

1.background: url(../images/member_right.gif) 0 -35px;

IE和chrome中 -35後面的'px'可要可不要,但是firefox則必需加上,Safari和Opera暫無測試;

2.padding屬性

IE設定該屬性後,div會增加height和width,但firefox和chrome不會,Safari和Opera暫無測試;

 

CSS Hack 區別IE6/IE7/IE8/IE9和其它標準瀏覽器(如Chrome、Firefox)

#test   
    {   
        width:300px;   
        height:300px;   
        background-color:blue;      /*chrome等標準瀏覽器*/        background-color:red\9;     /*所有ie瀏覽器都能識別*/        background-color:Green \9;  /*ie8或以下瀏覽器能識別  IE9不能識別*/
        *background-color:pink;     /*ie7和ie6能識別*/
        _background-color:orange;   /*ie6能識別*/
    }    注意:background-color:red\9和background-color:Green \9的區別在於"\9"前面的空格,本人測試發現     如果"\9"前面有個空格,那麼IE9瀏覽器識別不了,IE8或以下版本的IE瀏覽器則能夠識別,如果"\9"前面沒有空格,那就是     background-color:red\9了,這個時候包括IE9在內的所有IE瀏覽器都能識別,有點怪異...
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.