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

css hack

时间:2014-11-25 18:01:21      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   sp   strong   on   div   bs   ad   

各浏览器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支持 */ 
 

仅所有的WIN系统自带IE可识别

<!--[if IE 5.0]> Only IE 5.0 <![endif]-->
只有IE5.0可以识别

<!--[if gt IE 5.0]> Only IE 5.0+ <![endif]-->
IE5.0包换IE5.5都可以识别

<!--[if lt IE 6]> Only IE 6- <![endif]-->
仅IE6可识别

<!--[if gte IE 6]> Only IE 6/+ <![endif]-->
IE6以及IE6以下的IE5.x都可识别

<!--[if lte IE 7]> Only IE 7/- <![endif]-->
仅IE7可识别

<!--[if gte IE 7]> Only IE 7/+ <![endif]-->
IE7以及IE7以下的IE6、IE5.x都可识别

<!--[if IE 8]> Only IE 8/- <![endif]-->
仅IE8可识别

css hack

标签:style   ar   color   sp   strong   on   div   bs   ad   

原文地址:http://www.cnblogs.com/liujin0505/p/4121368.html

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