0

我在 ie(-8) 中看到了边界半径的代码,但我找不到它。evry where 仅由 jquery 或behavior: url(PIE.htc); 例如对于框阴影此代码是:

/* 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);

谁能帮我找到那个代码,好吗?

4

2 回答 2

1

据我所知,IE8 本身不支持圆角。您必须使用 jQuery 或 CSS3 填充器。

于 2013-07-15T07:16:28.243 回答
1

So any version of Internet Explorer lower than 9 doesn't support rounded corners.

Your options are:

  1. Use rounded corner images, nice plugin here.
  2. Use CSS3 Pie (which you don't want to use)
  3. Use a JQuery Plugin (which you don't want to use as well)
  4. An IE CSS3 Plugin - which provides CSS3 selectors for IE6/7/8

Note that option 4 provides both box shadow and rounded corners.

于 2013-07-15T07:24:28.983 回答