解決css瀏覽器不相容萬能方法

來源:互聯網
上載者:User

解決css瀏覽器不相容問題

 

CSS Hack的原理是什麼
  由於不同的瀏覽器對CSS的支援及解析結果不一樣,還由於CSS中的優先順序的關係。我們就可以根據這個來針對不同的瀏覽器來寫不同的CSS。
  比如 IE6能識別底線"_"和星號" * ",IE7能識別星號"
* ",但不能識別底線"_",而firefox兩個都不能認識。等等
  書寫順序,一般是將識別能力強的瀏覽器的CSS寫在後面。下面如何寫裡面說得更詳細些。
  如何寫CSSHack
  比如要分辨IE6和firefox兩種瀏覽器,可以這樣寫: 
  <style> 
  div{ 
  background:green;/* for firefox */ 
  *background:red;/* for IE6 */ 
  } 
  </style> 
  我在IE6中看到是紅色的,在firefox中看到是綠色的。

相關文章

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.