Answers for "how to use css property box shadow"

CSS
124

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
0

box-shadow in css

box-shadow: none|h-offset - v-offset - blur - spread - color - |inset|initial|inherit;

box-shadow: 10px 10px 8px 10px #888888;

box-shadow: 5px 10px inset;

box-shadow: 5px 5px blue, 10px 10px red, 15px 15px green;


( spread: Optional. The spread radius. A positive value increases the size of the shadow,
  a negative value decreases the size of the shadow)

(inset: Optional. Changes the shadow from an outer shadow (outset) to an inner shadow)
Posted by: Guest on April-09-2022

Browse Popular Code Answers by Language