This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The CSS box-shadow property applies shadow to elements. In its simplest use, you only specify the horizontal shadow and the vertical shadow:
div { box-shadow: 10px 10px; }
Next, add a color to the shadow:
div { box-shadow: 10px 10px grey; }
Next, add a blur effect to the shadow:
div { box-shadow: 10px 10px 5px grey; }
You can also use the box-shadow property to create paper-like cards:
January 1, 2021
Hardanger, Norway
div.card { width: 250px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); text-align: center; }
The following table lists the CSS shadow properties:
Property | Description |
---|---|
Adds one or more shadows to an element | |
Adds one or more shadows to a text |