I'm "trying" to style a dreaded table so that the first td is about 20% of the table, the second td is 50% and the 3rd is 20%... for some reason its not working PLUS no obeying the normal % of the parent table?
Any suggestions? I tried "width=20%" as well as css way.
Thanks a mill
PS Plz don't tell me to validate my html - this is a test example!
http://homepage.eircom.net/~egoman/tested.html
<html>
<body>
<center>
<table width="90%" bgcolor="blue">
<tr>
<td width="100%">
<table style="float: left; width: 20%;">
<tr>
<td bgcolor="red" valign="top"> THIS IS THE LEFT COLUMN, THIS IS THE LEFT COLUMN ETC ETC ETC
</td>
</tr>
</table>
<table style="float: left; width: 50%;">
<tr>
<td bgcolor="red" valign="top"> middle</td>
</tr>
</table>
<table style="float: left;width:20%;">
<tr>
<td bgcolor="red" valign="top"> right</td>
</tr>
</table>
<tr>
<td>
</table>


I'm "trying" to style a dreaded table so that the first td is about 20% of the table, the second td is 50% and the 3rd is 20%... for some reason its not working PLUS no obeying the normal % of the parent table?
Reply With Quote
Bookmarks