当前位置:编程学习 > html/css >>

css hack + _ * !important

css常用hack:

CSS hack由于不同的浏览器,比如Internet Explorer 6,Internet Explorer 7,Mozilla Firefox等,对CSS的解析认识不一样,因此会导致生成的页面效果不一样,得不到我们所需要的
页面效果。
这个时候我们就需要针对不同的浏览器去写不同的CSS,让它能够同时兼容不同的浏览器,能在不同的浏览器中也能得到我们想要的页面效果。

+background-color:red;/*ie10 ff 不识别*/


*background-color:red; /*ie10 ff 不识别*/


_background-color: red;/*ie 5 6识别*/


background-color: red !important; /*ie ff 支持 ie6 不支持*/


以上代码效果在winnt下测试效果,xp略有不同。

 

补充:web前端 , HTML/CSS  ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,