标签: html css
我正在尝试为.container类应用宽度,但是没有对css进行任何更改。如果有任何想法有任何想法让我知道。我的代码是。
<!-- [if ie 9]> .nav > li > a{ padding-left: 20px !important; } .container{ max-width: 1350px !important; width: 1350px !important; } <![endif]-->
My website link
答案 0 :(得分:4)
条件注释用于html标记,而不是css。 (有关用法,请参阅here)
有针对ie9的css攻击,例如/9或......这个:
/9
/* target Internet Explorer 9 and Internet Explorer 10:*/ @media screen and (min-width:0\0) { /* ie9+ code here */ ... }
在IE9 +和其他浏览器中查看此示例 FIDDLE