Really, I love this mail list, alot of neat information - I'm addicted.
Thanks!
I'm having some problems with heights. What I need to do is have a window
that has 100% width and 100% height used by a div. Inside of this div are
more header type objects and then (yes) an iframe which I want to fill any
and all unused space (100% of the space not used by the header objects).
I've created a container:
#wrap {
display: block;
height: 100%;
width: auto;
}
and then place my things inside...
<div id"wrap">
<div id"top1"></div>
<div id"top2"></div>
<div id"iframethingy"><iframe src="this.php" width='100%'
height='100%'></iframe></div>
</div>
And maybe this is obvious to y'all, but my iframe recognizes 100% of the
frame sans "top1" & "top2" so it's scroll bar extends beyond the bottom of
the page.
Is there a way to set the heights of everything to work out the way that
tables could do this?
In my travels with CSS so far the biggest issue I come up against is the
height of things in relation to either the actual window size and other
competing elements AND if two divs are floated besides each other I have to
set equal pixel values for height otherwise they won't necessarily be the
same...
Any advice would be much appreciated, thanks.
v
*****************************************************
The discussion list for http://webstandardsgroup.org/
*****************************************************