lumberjakel
Programmer
I have somewhat like the following page:
What i want is that if PAGECONTENT gets too large, the div-layer scrollbar is uses instead of the browsers scrollbarr.
Obviously i tried <div style='height:100%'> but this isn't working at all.
Basicly what i want is the divs height as high as possible without exceeding the pagewidth. Tables with 100% are able do to just this, so i think a layer should be able to do this as well
Code:
<table height=100%><tr><th>title</th></tr>
<tr><td>
<div style='overflow:auto; ...'>
PAGECONTENTS
</div>
</td>
</tr>
<tr valign=bottom><td>some copyright info here</td></tr>
</table>
What i want is that if PAGECONTENT gets too large, the div-layer scrollbar is uses instead of the browsers scrollbarr.
Obviously i tried <div style='height:100%'> but this isn't working at all.
Basicly what i want is the divs height as high as possible without exceeding the pagewidth. Tables with 100% are able do to just this, so i think a layer should be able to do this as well