Create box shadow with css | css tutorial
to create box shadow as above you should prepare css script as follows:
download example here.
thanks.
div
{
width:300px;
height:100px;
background-color:yellow;
-moz-box-shadow: 10px 10px 5px #888888; /* Firefox 3.6 and earlier */
box-shadow: 10px 10px 5px #888888;
}
download example here.
thanks.
Comments
Post a Comment