I'm looking to enhance a DIV element by applying a shadow effect using CSS3. To achieve a shadow on the bottom of the DIV, I have utilized the following code:
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
However, how can I also add the same shadow effect to the top?
Appreciate any guidance.