I need to add a shadow to a DIV with using CSS3. For adding a shadow for the bottom part of the DIV, I use:
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
But how to add yet also the same shadow for the top?
Thank you