Round Rock / Austin, Texas
Drupal Web Developer
Using CSS to create drop shadows
Tip: If the drop shadow isn't appearing, try adding a width.
CSS Code:
.box-ds {
width:100%;
display:block;
-moz-box-shadow: 3px 3px 3px 0 #666666;
-webkit-box-shadow: 3px 3px 3px 0 #666666;
box-shadow: 3px 3px 3px 0 #666666;
}
More info here-> http://www.w3schools.com/cssref/css3_pr_box-shadow.asp