码迷,mamicode.com
首页 > Web开发 > 详细

css hack 总结 包括ie6-11,chrome,opera,firefox

时间:2014-09-06 13:37:33      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   cti   sp   log   

<!DOCTYPE html> 
<html> 
<head> 
<title>Css Hack ie各版本 opera chrome safari firefox</title> 
<meta charset=”utf-8″ />
<style> 
#test 
{ 
width:300px; 
height:300px;

background-color:blue; /*firefox*/
background-color:red\9; /*all ie*/
background-color:yellow\0; /*ie8*/
+background-color:pink; /*ie7*/
_background-color:orange; /*ie6*/
} 
:root #test { background-color:purple\9; } /*ie9*/
@media all and (min-width:0px){ #test {background-color:black\0;} } /*opera*/
@media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} } /*chrome and safari*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
    #test { background-color:#00ff00 !important;   }  /* ie10 */
    *::-ms-backdrop, #test {  background-color:#00ffff !important; } /* ie11 */
}
</style> 
</head> 
<body> 
<div id=‘test‘>css hack 测试</div> 
</body> 
</html>

 

css hack 总结 包括ie6-11,chrome,opera,firefox

标签:style   blog   color   io   ar   div   cti   sp   log   

原文地址:http://www.cnblogs.com/ahwu/p/3959336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!