CSS 属性 适用于 IE8

CSS property for IE8

IE8中rgba值和border radius值为0.0的解决方法。 我得到的错误是

Value "rgba(250, 250, 250, .6)" is not supported. (8.0)


Property "-webkit-border-radius" is not supported. (8.0)

选项 1

http://jquery.malsup.com/corner/

选项 2

http://code.google.com/p/curved-corner/downloads/detail?name=border-radius-demo.zip

选项 3

http://css3pie.com/

选项 4

http://www.netzgesta.de/corner/

选项 5

看到这个问题

编辑:选项 6

https://code.google.com/p/jquerycurvycorners/ - 边界半径。 对于 rgba,您可以尝试创建不透明的 .png 图像并将其作为背景

或尝试

.transparent_class {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";

  /* IE 5-7 */
  filter: alpha(opacity=50);

  /* Netscape */
  -moz-opacity: 0.5;

  /* Safari 1.x */
  -khtml-opacity: 0.5;

  /* Good browsers */
  opacity: 0.5;
}