以下のように、タグ内で条件付きスタイルを使用することはできますか?
<body>
<div id="InScreenAlertContainer"
<!--[if IE]>
<style>width=100%</style>
<![endif]-->
>
...
</div>
...
</body>
あなたはこれを試すことができます:
#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]-->
参照 :
使用するブラウザに応じて条件付きスタイル シートを使用する
<!--[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());
});
たぶんあなたはこのようなことを試すことができますが、私はそれをテストしていません。
<!--[if IE 6]>
<style>
.mywidht{
width:100px;
}
</style>
<![endif]-->