Rounded corners for a div or any container holding your contents in your page looks cool, isn’t it. Good news is that the latest versions of all the major web browsers support CSS3. So you can use the CSS3 border-radius property directly to create rounded corners. For example to create a 10 pixel border radius this is how it would look. And this works for all browsers.
{
border : 1px solid #afafaf;
border-radius: 10px;
}
There is not much of a work you need to do as you would have done earlier with complex code for handling background images for rounded corners.
CSS3 border-radius compliance for all browsers
Here is an image that shows the compliance table for all major browsers (latest versions at the time or writing this entry). Click here to see a very nice compliance test.

