css add box shadow code example
Example 1: css box shadow
/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Example 2: css box shadow
#example1 {
box-shadow: 10px 10px 8px #888888;
}
Example 3: box shadow
/* Card Shadow with 2 layers */
.has-shadow{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
Example 4: change button shaddow css
button{
2.5px 2.5px 2px #888;
}