nether
06-06-2008, 03:09 PM
Hey,
I want to layout a page in the following way:
--------MenuBar--------
--------Toolbar---------
SidePanel-|-ContentArea
I want the sidePanel to be as tall as it possibly can without exceeding the height of the browser window.
Here is some simplified html for what I've been trying.
<body width=100% height=100%>
<table width=100% height=100%>
<tr>
<td> Menu Bar Area </td>
</tr>
<tr>
<td> Toolbar Area </td>
</tr>
<tr>
<td height=100%> SidePanel Area </td>
<td> Content Area</td>
</tr>
</table>
</body>
Note: In my actual code I set the widths and heights with CSS.
The result of the above code is that the total height of the table will be =
heightOfScreen + heightOfMenuBar + heightOfToolbar, but I want the whole table to just be in the space of the window...
Any help would be appreciated.
I want to layout a page in the following way:
--------MenuBar--------
--------Toolbar---------
SidePanel-|-ContentArea
I want the sidePanel to be as tall as it possibly can without exceeding the height of the browser window.
Here is some simplified html for what I've been trying.
<body width=100% height=100%>
<table width=100% height=100%>
<tr>
<td> Menu Bar Area </td>
</tr>
<tr>
<td> Toolbar Area </td>
</tr>
<tr>
<td height=100%> SidePanel Area </td>
<td> Content Area</td>
</tr>
</table>
</body>
Note: In my actual code I set the widths and heights with CSS.
The result of the above code is that the total height of the table will be =
heightOfScreen + heightOfMenuBar + heightOfToolbar, but I want the whole table to just be in the space of the window...
Any help would be appreciated.