Awesome CSS3
Rounded Corners
In CSS3 we can make round corner by using border-radius. Check the below code, we can see how safe our time ..:)
div {
border: 2px solid #434343;
padding: 10px;
background: #e3e3e3;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
width: 500px;
}
Text shadow
Text shadow properties make your text with drop shadow.
p
{
text-shadow: 2px 2px 2px #666666;}
Box shadow
Box shadow property add shadow to the box.
Code:
a
{
-moz-box-shadow: 2px 2px 3px #00000;
}

