* CSS Solution: Support rounded borders on most modern and standards compliant browsers (chrome, safari, firefox, etc..) but no support for IE 8 or lower. IE9 will support css rounded borders.
* Images: Support rounded borders in all browsers using images (more work)
For CSS solution, here is the code:
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ktml-border-radius: 5px
border-radius: 5px /* for future CSS3 standards and IE9 support */
smallwei 9:53 am on November 20, 2009
You have two choices:
* CSS Solution: Support rounded borders on most modern and standards compliant browsers (chrome, safari, firefox, etc..) but no support for IE 8 or lower. IE9 will support css rounded borders.
* Images: Support rounded borders in all browsers using images (more work)
For CSS solution, here is the code: