html-hack

作者: 楼水流云 | 来源:发表于2019-10-09 16:58 被阅读0次

ie条件注释法 ie10以上不支持
! [if !IE] 非IE [条件注释写法不同]
lt [if lt IE 5.5] 小于IE 5.5
lte [if lte IE 6] 小于等于IE6
gt [if gt IE 5] 大于 IE5
gte [if gte IE 7] 大于等于IE7
| [if (IE 6)|(IE 7)] IE6或者IE7

css-hack写法:
属性前缀法
.box{
color: red;
_color: blue; [ie6]
*color: pink; [ie67]
color: yellow\9; [ie/edge 6-8]
}

常见属性兼容情况:
div:hover >= ie7
inline-block >= ie8
min-width/min-height >= ie8
:before/:after >= ie8
background-size >= ie9
border-radius >= ie9
阴影 >= ie9
动画/渐变 >= ie10

相关文章

  • html-hack

    ie条件注释法 ie10以上不支持! [if !IE] 非IE [条件注释写法不同]lt [if lt...

网友评论

      本文标题:html-hack

      本文链接:https://www.haomeiwen.com/subject/xyqcpctx.html