CSSCraftr textShadow TWGradient

CSS boxShadow #generator

boxShadow #generator

Copy code:

box-shadow css property explained

The box-shadow property in CSS is used to add shadows to HTML elements, such as divs or buttons, allowing you to create depth and relief effects for these elements. This property takes a few parameters that control the appearance of the shadow:

box-shadow:
[offset X] [offset Y] [blur radius] [spread radius] [color] [inset]

Note: To attach more than one shadow to an element, add a comma-separated list of shadows box-shadow: 2px 5px 34px 10px rgba(201, 201, 201, 0.65), 10px 15px 15px 8px lightred;

Read more about the CSS box-shadow property on:

MDN - box-shadow  -  CSS-TRICKS  -  w3schools.com

Daily projects you can build to improve your coding skills!