The CSS box-shadow
property applies shadow to elements.
In its simplest use, you only specify the horizontal shadow and the vertical shadow:
Example:
div {
box-shadow: 10px 10px grey;
}
Answer (1)
The CSS box-shadow
property applies shadow to elements.In its simplest use, you only specify the horizontal shadow and the vertical shadow:Example:div { box-shadow: 10px 10px grey; }