It shows that you are unregistered. Please register with us by clicking Here
![]() |
|
![]() |
![]() | Register - FAQ - Today's Posts - New Posts - Support - Search | ![]() |
|
|
#1 (permalink) |
|
Member
Join Date: Feb 2007
Posts: 44
|
No, this isn't the classic "how do I do 100%" problem..
I'm trying to build up a table that has both fixed structure and adjustable. The problem is the weight isn't being shuffled where it's supposed to be. Here let me give an example: <html> <head> <title></title> </head> <body> <table cellpadding="0" cellspacing="0" border="1"> <tr bgcolor="0000AA"> <td width="20" height="20"></td> <td width="900" height="20"></td> <td width="20" height="20"></td> </tr> <tr bgcolor="0000AA"> <td width="20" height="50">50</td> <td width="900" rowspan="3"><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></td> <td width="20" height="50">50</td> </tr> <tr bgcolor="005500"> <td width="20"></td> <td width="20"></td> </tr> <tr bgcolor="0000AA"> <td width="20" height="100">100</td> <td width="20" height="100">100</td> </tr> <tr bgcolor="0000AA"> <td width="20" height="20"></td> <td width="900" height="20"></td> <td width="20" height="20"></td> </tr> </table> </body> </html> 50 and 100 are the heights I want it to stay, no variation no exceptions. The main body is fine and expected to adjust, but to compensate for those adjustments I want two cells on either side to adjust also. Instead those cells stay in it's smallest state and the changing height occurs on the 50 and 100 value cells. How should I go about fixing this? (and if someone is good with DIV's and CSS instead of tables, I'll take that advice too). |
|
|
|
|
|