hansolo Posted September 6, 2009 Report Share Posted September 6, 2009 i have noticed some tables have round corners, are the round corners created by a graphic image or hard coded. As some of the tables have hyperlinks inside as an example i reffer to the w3schools tables have round corners. I'm sorry if this is a complicated i apologise now but i am unsure .<html><head><style type="text/css">table.ex1 {table-layout:auto}table.ex2 {table-layout:fixed}</style></head><body><table class="ex1" border="1" width="100%"><tr><td width="5%">space1</td><td width="95%">space2</td></tr></table><br />cheers Link to comment Share on other sites More sharing options...
Ingolme Posted September 6, 2009 Report Share Posted September 6, 2009 (edited) No, round corners aren't usually done with tables (though they can be done). They're done with boxes (<div> elements). There are many ways to do it. Search on Google for round corners CSS Edited September 6, 2009 by Ingolme Link to comment Share on other sites More sharing options...
ravenshade Posted September 11, 2009 Report Share Posted September 11, 2009 Tables rarely have round corners as that is their nature, but as Ingolme states, "They're done with boxes". Div elements inside div elements. I use a code set that manipulates the "background: url(website) position" syntax to give me rounded corners. There are lots of scripts out there, some more useful than others. I'm going to assume that in tables they're done in a similar fashion Link to comment Share on other sites More sharing options...
Yvil Posted September 11, 2009 Report Share Posted September 11, 2009 Use div's instead of tables (however tables also work).Also, try this for rounded corners:http://www.css3.info/preview/rounded-border/ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now