|
Posted by jslaybaugh on 11/11/97 11:39
Thanks again for another suggestion, however we still have a problem.
I didnt go into this much detail at first, because I was having the
problem even in the simple scenario I mentioned above, but inside my
bottom "row" that is supposed to fill the height, I am going to have a
table that splits that bottom row vertically about 60/40 and put an
iFrame in the right half. So, since I want this iFrame to fill the
height of its container (as the box model suggests all of this should
work), I need that bottom area to fill the remaining height.
-----------------------------------
| header |
-----------------------------------
| ^ | |
| 100% | iframe |
| v | |
-----------------------------------
I did try to remove the tables altogether since that apparently is bad
design nowadays, and this i still have the same problem. The
simplified HTML can be seen below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
style="height:100%;width:100%;margin:0;padding:0;" >
<body style="width:100%;height:100%;margin:0;padding:0;">
<div
style="height:100%;width:100%;margin:0;border:none;padding:0;">
<div
style="height:100px;width:100%;margin:0;border:none;padding:0;">text<br
/>text<br />text</div>
<div
style="height:100%;width:100%;margin:0;border:none;padding:0;">text<br
/>text<br />text</div>
</div>
</body>
</html>
If you create that file, you'll still have vertical scroll in MSIE.
Thanks, though! Any other ideas??
Navigation:
[Reply to this message]
|