Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my project I would like to round the border corners of a button / table / panel
controls.

Can anyone advice.
Regards.
Posted

Hi,

The follownig tutorial can be useful for you.

http://www.css3.info/preview/rounded-border/[^]

But please note if you make your controls rounded corner using programming them IE series will not support it.

Else you can use the same old technique.

1. Creating rounded corner images using photoshop
2. Calling them via css/html

Please let me know if you need any further information for the same

Happy Programming.
:)
 
Share this answer
 
Try applying following style:
CSS
border-radius


Ex:
CSS
.label
{
border-radius:25px;
} 


Check this link:
css3_borders.asp[^]
rounded-border[^]

Try!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900