我正在尝试为IE专门编写代码,因为它在其他浏览器上运行得非常好。我想添加
margin-left: -1px;
通过将该行代码添加到div来实现所有IE变体。我查了一遍,并在HTML页面上为我的Internet Explorer 11浏览器尝试了这个。
<!--[if IE 11]>
<link rel="stylesheet type="text/css" href="ie11.css" />
<div class="mini-products-list-title" style="margin-left: -1px;"></div>
<![endif]-->
对我做错的任何建议?
更新:我收到通知,条件评论不适用于IE10 + IE11。能够向下面的代码添加margin-left:-1px只是IE的问题。
这是css
.mini-cart-items .mini-products-list-title {
background-color : #233a77;
border : 2px solid #010d35;
color : #fff;
font-size : 16px;
font-weight : bold;
height : 20px;
padding : 2px;
width : 300px;
}