box shadow werid code example
Example 1: box shadow
box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Example 2: 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 3: box shadow
/* offset-x, offset-y, (blur-radius and/or spread-radius=optional) and color */
selector {
box-shadow: offset-x offset-y (blur-radius and/or spread-radius=optional) color;
}
/* Example */
.test-shadow {
box-shadow: 4px 4px 20px 0px #888888;
}