2013-07-15 33 views
0

我在ie(-8)中看到了邊界半徑的代碼,但是我無法找到它。 埃夫裏哪裏是唯一的jQuery或behavior: url(PIE.htc); 例如用於盒陰影這段代碼是:無jquery&PIE的邊界半徑代碼

/* For IE 8 */ 
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=7, Direction=140, Color='#d3d2d2')"; 
/*For IE 5.5 – 7*/ 
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=7, Direction=140, Color='#d3d2d2'); 

或不透明度:

filter:alpha(opacity=70); 

誰可以幫我發現代碼,好嗎?

+1

您希望在IE8中使用<= IE8中的圓角邊框而不使用支持圓角邊框的解決方法? –

回答

1

據我所知,IE8本身不支持圓角。你必須使用jQuery或CSS3填充。

+0

什麼是過濾器語法 – sepehr2121

+0

@ sepehr2121:ie8沒有。 –

1

因此,任何低於9的Internet Explorer版本都不支持圓角。

的選項有:

  1. 使用圓角圖片,nice plugin here.
  2. 使用CSS3派(which you don't want to use
  3. 使用jQuery插件(which you don't want to use as well)
  4. IE CSS3 Plugin - 它提供了CSS3選擇器IE6/7/8

N注意選項4提供了箱形陰影和圓角。

+0

任何過濾器....? – sepehr2121

+0

您可以使用選項4中的CSS3選擇器支持來提供框陰影。你沒看看嗎? –

+0

是的,但它不起作用! – sepehr2121