Possible Duplicates:
css/ html help in making rounded table like container
What is the best way to create rounded corners using CSS?
how to make a rectangle/square with curved edges in html?
Possible Duplicates:
css/ html help in making rounded table like container
What is the best way to create rounded corners using CSS?
how to make a rectangle/square with curved edges in html?
You could use the CSS 3 property border-radius
.
Vendor implementations:
-moz-border-radius
-webkit-border-radius
Please note:
You need to draw the rectangle/square on a canvas, then manually round the corners. This method only works for HTML5-compatible browsers (not IE8).
http://thinkvitamin.com/code/how-to-draw-with-html-5-canvas/