Thread: expanding table
Results 1 to 3 of 3
Related
-
expanding/contracting like Wikipedia Forum: Javascript Forum
Replies: 14 -
Expanding/falldown/collapsible menus help please Forum: PHP Forum
Replies: 2 -
Need help with a table Forum: HTML Forum
Replies: 0 -
Table Help!! Forum: HTML Forum
Replies: 1 -
How can you make a table border on only one side of the table? Forum: HTML Forum
Replies: 5
-
08-04-2003, 06:32 PM #1
expanding table
I want to create a table that will expand to fill all the available on screen area but will not expand to allow more text on a line. How should I go about doing this?
http://www.colorconceptsdesign.com/steve/exe/
The center table is the one that I am trying to do this too.
also you will see the text in that table is being sent to the next line well before it has to. I can see that the text is breaking right at where the top image ends. how can i fix this so the text will continue on past that point?
-
08-04-2003, 07:01 PM #2
It sounds like a nesting problem.
Add this code in the <head>
Code:<style type="text/css"> table { border: 1px solid blue; } td { border: 1px solid red; } </style>
if not, post back. But I am off to bed, its 0100 in the morning hereIf one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
08-04-2003, 08:36 PM #3
i hate how the simple things are always the ones you miss. thanks so much.