IE6/IE7/IE8/Firefox/Chrome/Safari的CSS hack相容一覽表

來源:互聯網
上載者:User

今日整理網站的 CSS 的時候發現我的網站在 Firefox下面出現了變形的情況,這個時候我急啊.

我就到網上找了很多資料,最後發現下面的內容比較實用:熟悉CSS的朋友一定對CSS hack十分瞭解了,現在IE瀏覽器、Firefox瀏覽器、Chrome瀏覽器、Opera瀏覽器、Safari瀏覽器百家爭鳴,可苦了我們這些Web前端開發人員了。

我在這裡稍微整理了一下前面瞭解的各瀏覽器的CSS hack,打包奉獻一下,哈哈。

各瀏覽器CSS hack相容表:

IE6 IE7 IE8 Firefox Chrome Safari
!important Y Y
_ Y
* Y Y
*+ Y
\9 Y Y Y
\0 Y
nth-of-type(1) Y Y

程式碼範例:

#test{
color:red; /* 所有瀏覽器都支援 */
color:red !important;/* Firefox、IE7支援 */
_color:red; /* IE6支援 */
*color:red; /* IE6、IE7支援 */
*+color:red; /* IE7支援 */
color:red\9; /* IE6、IE7、IE8支援 */
color:red\0; /* IE8支援 */
}

body:nth-of-type(1) p{color:red;} /* Chrome、Safari支援 */

整體測試程式碼範例:

.test{
color:#000000;
color:#0000FF\0;
[color:#00FF00;
*color:#FFFF00;
_color:#FF0000;
}

其他說明:

1、如果你的頁面對IE7相容沒有問題,又不想大量修改現有代碼,同時又能在IE8中正常使用,微軟聲稱,開發商僅需要在目前相容IE7的網站上添加一行代碼即可解決問題,此代碼如下:
<meta http-equiv=”x-ua-compatible” content=”ie=7″ />

2、body:nth-of-type(1) 如果這樣寫,表示全域尋找body,將會對應第一個<body>。

3、還有其他寫法,比如:
*html #test{}或者 *+html #test{}

4、*+html 對IE7的hack 必須保證HTML頂部有如下聲明:

http://www.w3.org/TR/html4/loose.dtd

5、順序:Firefox、IE8、IE7、IE6依次排列。

小知識:什麼是CSS hack?

由於不同的瀏覽器,比如IE6、IE7、IE8、Firefox等,對CSS的解析認識不一樣,因此會導致產生的頁面效果不一樣,得不到我們所需要的頁面效果。

這個時候我們就需要針對不同的瀏覽器去寫不同的CSS,讓它能夠同時相容不同的瀏覽器,能在不同的瀏覽器中也能得到我們想要的頁面效果。

這個針對不同的瀏覽器寫不同的CSS code的過程,就叫CSS hack,也叫寫CSS hack。

相關文章

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.