I have been attempting to replicate the shadow effects found on this website. After inspecting the CSS in Chrome, I am still unable to achieve the desired result with my current code:
.imageShadow {
background: #fff;
-webkit-box-shadow: 0 0 5px 0 #bbb;
box-shadow: 0 0 5px 0 #bbb;
height: 293px;
}
Keep in mind that my image has a height of 293px.
Will this code work correctly across all browsers?
Does anyone have any suggestions or ideas to help me troubleshoot this issue?