i have three rows on my main site
i want that the middle-row resizes (only height) depending on the windows
size
i know it is possible in javascript, but i dont know how ot do it
im more like server-side scripting type of guy
<table align="center" width="100%" height="100%">< tr align="center"
valign="middle" ><td>
<table width="750" align="center" border="0" cellpadding="0"
cellspacing="0" >
<tr>
<td height="50" align="center" valign="top">
<!-- TOP -->
</td>
</tr>
<tr>
<td height=" <!-- RESIZE THIS DEPENDING ON THE WINDOWS SIZE -->
" align="center" valign="top">
<!-- CONTENT -->
</td>
</tr>
<tr>
<td height="50" align="center" valign="bottom" >
<!-- BOTTOM -->
</td>
</tr>
</table>
</td></tr></table>
i want that the middle-row resizes (only height) depending on the windows
size
i know it is possible in javascript, but i dont know how ot do it
im more like server-side scripting type of guy
<table align="center" width="100%" height="100%">< tr align="center"
valign="middle" ><td>
<table width="750" align="center" border="0" cellpadding="0"
cellspacing="0" >
<tr>
<td height="50" align="center" valign="top">
<!-- TOP -->
</td>
</tr>
<tr>
<td height=" <!-- RESIZE THIS DEPENDING ON THE WINDOWS SIZE -->
" align="center" valign="top">
<!-- CONTENT -->
</td>
</tr>
<tr>
<td height="50" align="center" valign="bottom" >
<!-- BOTTOM -->
</td>
</tr>
</table>
</td></tr></table>
Comment