首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

几种 css hack 步骤

2012-11-22 
几种 css hack 方法第一种:!important方式.DIV{background:orange/*ff*/*background:green!important/*I

几种 css hack 方法
第一种:!important方式
.DIV{ 
background:orange;/*ff*/ 
*background:green!important;/*IE7*/ 
*background:blue;/*IE6*/ 


第二种:样式属性前缀式
.DIV{ 
margin:10px;/*ff*/ 
*margin:15px;/*IE7*/ 
_margin:15px;/*IE6*/ 


第三种:选择前缀式
#DIV{color:#333;}/*ff*/ 
*html#DIV{color:#666;}/*IE6*/ 
*+html#DIV{color:#999;}/*IE7*/

第四种:IE条件式
<!--[if IE]>
<link type="text\css" href="IE.css" rel="stylesheet"/>
<![endif]-->

热点排行