Create table with curved corners

liunx

Guest
Hi

I have created tables with curved corners placing images on all four corners. Is it possible to create table with curved corners (with border) using CSS without using any corner/border images?? If so how can I do it??

sharaNot officially until CSS 3 hits the road though you can simulate that effect with CSS positioning of the images.In mozilla, you can do this by:
#roundedborder {-moz-border-radius: 10px 10px 0 0;}

This should be a standard in CSS-3. Unfortunately, the next IE release is not due until couple more years, so there may not be wide-spread support for it till then :(

Eric Meyer gives a nice tutorial on rounded corners for navigation tabs (<!-- m --><a class="postlink" href="http://www.complexspiral.com/publications/rounding-tabs/">http://www.complexspiral.com/publicatio ... ding-tabs/</a><!-- m -->) using CSS... you can extend the same idea to a div.Thank u all for ur help

shara:p
 
Back
Top