Click to See Complete Forum and Search --> : Create table with curved corners


shanuragu
10-16-2003, 07:08 AM
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??

shara

Robert Wellock
10-16-2003, 08:31 AM
Not officially until CSS 3 hits the road though you can simulate that effect with CSS positioning of the images.

nkaisare
10-16-2003, 11:20 AM
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 (http://www.complexspiral.com/publications/rounding-tabs/) using CSS... you can extend the same idea to a div.

shanuragu
10-16-2003, 11:42 PM
Thank u all for ur help

shara:p