Answers for "box shdow css"

72

css box shadow

/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Posted by: Guest on August-13-2020
3

inner box shadow

div {
     box-shadow: inset 0 0 10px #000000;
}
Posted by: Guest on April-16-2020
19

box shadow

box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Posted by: Guest on June-29-2020
-1

box shadow css

/* add depth to your webpage */

box-shadow: <x-offset> <y-offset> <blur-radius> <spread-radius> <color>;
Posted by: Guest on March-16-2021

Browse Popular Code Answers by Language