Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forcing a table to 100% height

Status
Not open for further replies.

mattscotney

Programmer
Jul 31, 2002
57
AU
Hi all,

How do I force a table or cell to 100% height using Netscape 6.x?

Thanks,
Matt Scotney
 
Just like in other browsers :
Code:
<Table height=&quot;100%&quot;>
The problem you should have is that nescape don't draw empty cells so, if your table isn't filled, it may not display on all page. What you can do to overlap this is adding another line at end of your table of this form :
Code:
<Tr height=&quot;123px&quot;>
  <Td Colspan=&quot;cc&quot;>& nbsp ;</Td>
</Tr>
Where
- &quot;123px&quot; should be modified to the heigh needed to fill page.
- &quot;& nbsp ;&quot; shoud be in one word with no blanks
- &quot;cc&quot; should be the number of columns of your table. Water is not bad as long as it stays out human body ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top