12 Jun 2015

CSS3 box-shadow

 The box-shadow property attaches one or more shadows to an element. The property is a comma-separated list of shadows, each specified by 2-4 length values, an optional color, and an optional inset keyword. Omitted lengths are 0.

div {
    box-shadow: 10px 10px 5px #888888;
}