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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table row size

Status
Not open for further replies.

GP

IS-IT--Management
Jan 14, 2002
61
GB
I have a table with 7 rows and 2 columns. The second column has a row span of 5.

In the rows in the first column I have some navigation and have input <tr height=&quot;xxx&quot;> and used images which have the sizes input.

If the second column grows larger than the first column (i.e. a lot of content) then the browser resizes the first column rows evenly.

I want any additional space to all be put in row 7 column1 as this is blank with only the background color. I have tried <tr> <tr height=&quot;*&quot;> and <tr height=&quot;100%&quot;> to no avail.
 
Is this what you have?

Code:
<table cellspacing=&quot;2&quot; cellpadding=&quot;2&quot; border=&quot;1&quot;>
<tr>
    <td>Navigation</td>
    <td rowspan=&quot;5&quot;>Lots of content goes in here?</td>
</tr>
<tr>
    <td>Navigation</td>
</tr>
<tr>
    <td>Navigation</td>
</tr>
<tr>
    <td>Navigation</td>
</tr>
<tr>
    <td>Navigation</td>
</tr>
<tr>
    <td>Navigation</td>
    <td> </td>
</tr>
<tr>
    <td>Blank (BGCOLOR)</td>
    <td> </td>
</tr>
</table>

Pete.


Lotus Notes Web Developer / Aptrix (LWWCM) Consultant
w: e: Pete.Raleigh(at)lclimited.co.uk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top