PDA

View Full Version : Table Problems [HTML]



nobody
August 16th, 2003, 05:38 PM
Haha.. html problems.. that's gotta be a first

well anyway I can't get 2 tables side by side for some reason and it's really pissing me off.

http://www.syntheticwhat.net/expire

let me know if you know what to do

thanks

-xxvii(brain impaired)

ahmed
August 16th, 2003, 05:52 PM
um.. try having a table with two vertical cells, then place a table inside each of those :)

nobody
August 16th, 2003, 06:09 PM
i did.. and it didnt work :*(

abzoid
August 16th, 2003, 08:46 PM
What Ahmed suggested should work and look like this.
<table width="60%" border="1" cellspacing="1" cellpadding="3" bgcolor="#66CCFF">
<tr>
<td>
<table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#CCFFFF">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
<td>
<table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#FFCCFF">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>



<table width="60%" border="1" cellspacing="1" cellpadding="3" bgcolor="#66CCFF">
<tr>
<td>
<table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#CCFFFF">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
<td>
<table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#FFCCFF">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>

nobody
August 17th, 2003, 12:05 AM
thanks abzoid.. i know it works.. i'm just having some difficulties with it for some reason or another.