Nnss Rr
Nnss Rr

Reputation: 11

How can I implement an inset box-shadow in IE 8+?

What is the IE 8+ compatible CSS code for the following box-shadow code:

.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>

Upvotes: 1

Views: 76

Answers (1)

Joel Jackson
Joel Jackson

Reputation: 11

IE8 supports this property except the value inset.

Upvotes: 1

Related Questions