shadow box html code example
Example 1: css box shadow
#example1 {
box-shadow: 10px 10px 8px #888888;
}
Example 2: box shadow
box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Example 3: box shadow css
/* add depth to your webpage */
box-shadow: <x-offset> <y-offset> <blur-radius> <spread-radius> <color>;