Click to See Complete Forum and Search --> : page length


wmw
05-22-2006, 10:26 PM
I have a frame based web page I want to set the page to certain length in the very first page. I tried something such as

frameset {length:1000px}

and it doesn't work. Please don't talk me out of using frames. It's not my decicion to make. Are there something I can use?

NogDog
05-22-2006, 10:45 PM
If the rows attribute of your frameset tag adds up to 100% or at least one row's height is "*" (rest of available space), then your frameset should take up the entire height of the page.

<frameset rows="100%">
...or...
<frameset rows="40%,60%">
...or...
<frameset rows="200,*">