1

我希望我的一些样式仅适用于 IE 8 及更低版本。我也只想更改我的样式表而不是我的 html。这可能吗?

这是我只想应用到 IE 8 及更低版本的风格(我不想更改 IE 9 或 10)

.ui-icon-searchfield:after {
        background-color: #000000;
        background-color: rgba(0,0,0, 0.4);
        background-image: url(images/icons-18-white.png);
        background-repeat: no-repeat;
        -webkit-border-radius: 9px;
        border-radius:  9px;
        filter: alpha(opacity=40); 

}

我只希望在 IE 8 及更低版本上使用最后一种样式

4

2 回答 2

5

两种选择:

1:

.ui-icon-searchfield:after {
    background-color: #000000\9; /* IE8 and below */  
    background-color: rgba(0,0,0, 0.4)\9; /* IE8 and below */  
    background-image: url(images/icons-18-white.png)\9; /* IE8 and below */  
    background-repeat: no-repeat\9; /* IE8 and below */  
    -webkit-border-radius: 9px\9; /* IE8 and below */  
    border-radius:  9px\9; /* IE8 and below */  
    filter: alpha(opacity=40)\9; /* IE8 and below */  
}

2:

<!--[if IE 6]>
/*According to the conditional comment this is IE 6*/
  .ui-icon-searchfield:after {your stuff}
<![endif]-->
<!--[if IE 7]>
/*According to the conditional comment this is IE 7*/
  .ui-icon-searchfield:after {your stuff}
<![endif]-->
<!--[if IE 8]>
/*According to the conditional comment this is IE 8*/
  .ui-icon-searchfield:after {your stuff}
<![endif]-->

我的建议是第二个(条件)

于 2013-08-10T00:29:36.200 回答
0

看看这个链接。它具有在 IE CSS 上工作所需的所有信息。

https://css-tricks.com/how-to-create-an-ie-only-stylesheet/

于 2015-04-28T09:29:59.030 回答