Thread: Tables in css can this be done
Results 1 to 4 of 4
Related
-
Help with Tables!!!! Forum: HTML Forum
Replies: 1 -
TABLES- can any one help me stop the text streching the tables. Forum: HTML Forum
Replies: 2 -
css for tables Forum: CSS Forum
Replies: 1 -
Avoiding nested tables or grouping separate tables in chunks Forum: HTML Forum
Replies: 2 -
help with tables! Forum: HTML Forum
Replies: 2
-
02-11-2006, 03:58 PM #1
Tables in css can this be done
I have built a site for a seo contest.. I just now learning css hopint to get away from use of tables..
The three tables to the right on this page
http://v7ndotcom-elursrebmem-org.com are tables inside tables can this be done in css and where would the best place be to learn css online...
My main question is can this table lay out be done in css
-
02-11-2006, 06:23 PM #2
Re: Tables in css can this be done
W3Schools is probably the best for all kinds of web development tools, not just CSS. Hope this helps.
Music Around The World - Collecting tips, trade
and want lists, album reviews, & more
-
09-29-2007, 02:53 AM #3
Re: Tables in css can this be done
This table layout can be done, you'll have to use display:inline to make create three column div layout , something like this:
<div id="container" style="overflow:hidden; height:auto;">
<div style="display:inline; float:left">1st column</div>
<div style="display:inline; float:left">2nd column</div>
<div style="display:inline; float:left">3rd column</div>
</div>
To mke the container div strech, you have to add that overflow:hidden; height:auto; CSS rule.
-
12-27-2007, 12:45 AM #4
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum