Creating Rounded Corners using CSS
How can I create rounded corners using CSS?
Answer :
Since CSS3 was introduced, the best way to add rounded corners using CSS is by using the
border-radius
property. You can read the spec on the property, or get some useful implementation information on MDN:
Source :http://stackoverflow.com/questions/7089/creating-rounded-corners-using-css
COMMENTS