The following CSS added to an element will give it rounded corners:
{code type=css}
-moz-border-radius:1px; /* For Firefox */
-webkit-border-radius:1px; /* For Chrome & Safari */
border-radius:1px; /* CSS3 property, for FireFox 4, IE9 and Opera */
{/code}
Unfortunately IE8 and below have no CSS support.