box-shadow css propertu code example
Example 1: box shadow
box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Example 2: css box shadow
/*// https://html-css-js.com/css/generator/box-shadow
--------------------------------------------------------------*/
-webkit-box-shadow: 5px 5px 15px 5px #000000;
-moz-box-shadow: 5px 5px 15px 5px #000000;
box-shadow: 5px 5px 15px 5px #000000;
/*// offset-x | offset-y | blur-radius | spread-radius | color
box-shadow: 5px 5px 15px 5px #000000;
--------------------------------------------------------------*/