|
-
Nov 14th, 2001, 08:08 PM
#1
Thread Starter
PowerPoster
HTML Table problem... this has plagued me for too long...
I am having a prob with HTML tables.
I want a table to be split into cells like:
[Code]
___________
|_____|____|
|__|__|__|__|
|_____|____|
|_____|____|
So a row of 2 cols, then 4 cols, then 2 cols, then 2 cols.
Simple enough, but when I define this table, I have a problem where the row of 4 cols goes wider than the rows of 2 cols.
See: http://www.endeavour.net.au/join.asp to see what I mean.
This didn't used to happen, but seems to happen in all my tables these days... what is the problem?
-----------------------------------------
-RJ
[email protected]
-----------------------------------------
-
Nov 14th, 2001, 08:21 PM
#2
Code:
<table width="75%>
<tr>
<td colspan="2"></td>
<td colspan="2"></td>
</tr>
<tr><td></td> <td></td> <td></td> <td></td> </tr>
<tr>
<td colspan="2"></td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2"></td>
<td colspan="2"></td>
</tr>
</table>
I didn't really look at the page you provided, but that should be the basics of it.
Last edited by crptcblade; Nov 14th, 2001 at 09:09 PM.
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Nov 14th, 2001, 08:35 PM
#3
Thread Starter
PowerPoster
That's the one.
Cheers!
-----------------------------------------
-RJ
[email protected]
-----------------------------------------
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|