add a box shadow css code example
Example 1: css box shadow
#example1 {
box-shadow: 10px 10px 8px #888888;
}
Example 2: box shadow css
/* add depth to your webpage */
box-shadow: <x-offset> <y-offset> <blur-radius> <spread-radius> <color>;
#example1 {
box-shadow: 10px 10px 8px #888888;
}
/* add depth to your webpage */
box-shadow: <x-offset> <y-offset> <blur-radius> <spread-radius> <color>;