0

是否可以在标签内使用条件样式,如下所示?

<body>
    <div id="InScreenAlertContainer"
    <!--[if IE]>
    <style>width=100%</style>
    <![endif]-->
    >
    ...
    </div>
...
</body>
4

3 回答 3

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()); 
});

来源: 在运行时更改 CSS 规则

于 2013-01-07T04:54:26.213 回答
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]-->

参考 :

参考链接 1

参考链接 2

参考链接微软

于 2013-01-07T05:05:33.383 回答
0

也许你可以尝试这样的事情,但我还没有测试过。

 <!--[if IE 6]>
    <style>
       .mywidht{
           width:100px;
        }
    </style>
    <![endif]-->
于 2013-01-07T05:05:10.910 回答