一尘不染

如果浏览器是IE,则应用CSS规则[重复]

css

如何将以下规则仅应用于IE?

.abc {

float:left;
height:0;
margin:0 10px;
width:0;

/*Apply these rules for IE only*/
position:absolute;
left:30;
top:-10;
/*Apply these rules for IE only*/
}

阅读 262

收藏
2020-05-16

共1个答案

一尘不染

在IE9及更高版本的浏览器中,这是通过条件注释来完成的。

<!--[if IE]>
<style type="text/css">
  IE specific CSS rules go here
</style>
<![endif]-->
2020-05-16