Utilizor
Contact Us

CSS Shadows

With CSS you can add shadow to text and to elements.

CSS Shadows

With CSS you can add shadow to text and to elements.

Text Shadow

The text-shadow property adds shadow to text.

Text Shadow Effect!

Box Shadow

The box-shadow property adds shadow to elements.

This is a div element with a box-shadow

Cards with Shadow

You can use box-shadow to create "cards".

John Doe

Architect & Engineer

Example

h1 {
  text-shadow: 2px 2px 5px red;
}

div {
  box-shadow: 10px 10px 5px grey;
}