条件语句在其中添加 css
Conditional Statement add css in them
是否可以使用条件注释执行以下操作:
<!--[if IE]>
.ie-only{margin-top:-13px;}
<![endif]-->
你可以这样做...
<html>
<head>
<!--[if IE]>
<style>
.box {
width: 500px;
background:red;
padding: 100px 0;
}
</style>
<![endif]-->
</head>
<body>
<div class="box">Try this in IE</div>
</body>
</html>
编辑:
您还可以单独为 IE 添加外部 css。
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="onlyfoie.css" />
<![endif]-->
是否可以使用条件注释执行以下操作:
<!--[if IE]>
.ie-only{margin-top:-13px;}
<![endif]-->
你可以这样做...
<html>
<head>
<!--[if IE]>
<style>
.box {
width: 500px;
background:red;
padding: 100px 0;
}
</style>
<![endif]-->
</head>
<body>
<div class="box">Try this in IE</div>
</body>
</html>
编辑:
您还可以单独为 IE 添加外部 css。
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="onlyfoie.css" />
<![endif]-->