是否可以在标签内使用条件样式,如下所示?
<body>
<div id="InScreenAlertContainer"
<!--[if IE]>
<style>width=100%</style>
<![endif]-->
>
...
</div>
...
</body>
答案 0 :(得分:1)
根据使用的浏览器使用条件样式表
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="iespecific.css" />
<![endif]-->
来源: http://www.thesitewizard.com/css/excludecss.shtml
JQuery .css
方法可让您指定在事件发生后生效的样式
//On Button Click - applies a style on click.
$('#change').click(function()
{
$('body').css('background-color',$('#color').val());
});
答案 1 :(得分:1)
你可以试试这个:
#div{
padding: 10px; /* standard */
padding: 17px\9; /* IE 8 and below */
*padding: 15px\9; /* IE 7 and below */
_padding: 16px\9; /* IE 6 */
}
或强>
<!--[if IE]><p>You are using Internet Explorer.</p><![endif]-->
<![if !IE]><p>You are not using Internet Explorer.</p><![endif]>
<!--[if IE 7]><p>Welcome to Internet Explorer 7!</p><![endif]-->
<!--[if !(IE 7)]><p>You are not using version 7.</p><![endif]-->
<!--[if gte IE 7]><p>You are using IE 7 or greater.</p><![endif]-->
<!--[if (IE 5)]><p>You are using IE 5 (any version).</p><![endif]-->
<!--[if (gte IE 5.5)&(lt IE 7)]><p>You are using IE 5.5 or IE 6.</p><![endif]-->
<!--[if lt IE 5.5]><p>Please upgrade your version of Internet Explorer.</p><![endif]-->
<!--[if true]>You are using an <em>uplevel</em> browser.<![endif]-->
<![if false]>You are using a <em>downlevel</em> browser.<![endif]>
<!--[if true]><![if IE 7]><p>This nested comment is displayed in IE 7.</p><![endif]><![endif]-->
参考:
答案 2 :(得分:0)
也许你可以尝试这样的东西,但我还没有测试过。
<!--[if IE 6]>
<style>
.mywidht{
width:100px;
}
</style>
<![endif]-->