DobotJr
DobotJr

Reputation: 4049

CSS Shadow on a Div in IE6+

This is my container:

#container {
width: 950px;
-moz-box-shadow: 0 0 8px 0px #808080;
-webkit-box-shadow: 0 0 8px 0px #808080;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
padding-right: 6px;
padding-left: 6px;
background-color: #FFF;
} 

<div id='container'>

  stuff

</div>

How can I get the same shadow effect using IE6+ that I get in Firefox and Chrome?

Upvotes: 1

Views: 86

Answers (1)

SLaks
SLaks

Reputation: 887305

You can use CSS3Pie.

Upvotes: 2

Related Questions