<!--[if !IE]><!--><script>
if ( /*@cc_on!@*/ false ) {
document . documentElement . className + = ' ie10'
}
</script><!--<![endif]-->
请注意/*@cc_on ! @*/中间的这个感叹号。
这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下:
.ie10 .example {
/* IE10-only styles go here */
}
怎么说你呢?IE9以上都支持CSS3了,你谷歌、苹果、火狐都加了,为何不给IE11加一个呢?代码:background:
-ms-linear-gradient(top,#46a0e1,#3280bf)已经过IE11浏览器测试通过,建议background:linear-gradient(top,#46a0e1,#3280bf)放在最后,注意优先顺序:
1234567.ui_title{ height:26pxline-height:26pxfont-size:14pxfont-weight:boldcolor:#DDDpadding-left:7pxborder-bottom:1px solid #6da6e1background:-webkit-gradient(linear,0% 0%, 0% 100%,from(#46a0e1),to(#3280bf))background:-moz-linear-gradient(top,#46a0e1,#3280bf)background:-o-linear-gradient(top,#46a0e1,#3280bf)background:-ms-linear-gradient(top,#46a0e1,#3280bf)filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a0e1',endColorstr='#3280bf')*background:#DDD}background:linear-gradient(top,#46a0e1,#3280bf)
<head><link href="css/stylesheet.css" rel="stylesheet" type="text/css" />
</head>