1

以下box-shadow代码的 IE 8+ 兼容 CSS 代码是什么:

.border {
    height: 100px;
    width: 100px;
    -webkit-box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.1);
       -moz-box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.1);
            box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.1);
}

HTML:

<div class="border" style="background: url(http://c.saavncdn.com/UNI-04945-150x150.jpg);"></div>
4

1 回答 1

1

IE8 支持此属性,但值inset除外。

于 2013-07-08T11:11:24.600 回答