box-shadow


]Podporované v CSS3 

Syntax

box-shadow: h-shadow v-shadow blur spread color inset;

Popis

Príkaz jazyka CSS
h-shadow - Required. The position of the horizontal shadow. Negative values are allowed
v-shadow - Required. The position of the vertical shadow. Negative values are allowed
blur - Optional. The blur distance
spread - Optional. The size of shadow
color - Optional. The color of the shadow.
inset - Optional. Changes the shadow from an outer shadow (outset) to an inner shadow

Príklad

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


Externé odkazy

príklad 

]