Showing posts with label box shadow. Show all posts
Showing posts with label box shadow. Show all posts

Sunday, 22 December 2013

Responsive web design tips: CSS3 Box shadow usage techniques

Box shadow is a very important tag in responsive design. with this tag we can apply a beautiful shadow to a box in website.

the code will be like this:

.democlass { box-shadow: 0px 1px 2px #cccccc; }

Then you can get a beautiful style. try with your custome colors.

Friday, 20 December 2013

How give Shadow in website design using CSS3 Shadow property ?

In CSS3, the box-shadow property is used to add shadow to boxes:

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