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;
}


| More
Thank for reading My post.Feel free for any comments.
ahkeno

This entry was posted on Monday, May 24th, 2010 at 12:31 pm and is filed under CSS And JS. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply