Link to home
Start Free TrialLog in
Avatar of saturation
saturation

asked on

Align nested table at bottom of parent table

I'm trying to vertically align a table that is nested inside another table at the bottom.  I'm unsure of how to do this, because I also have another nested table that aligns at the top of the parent table.
ASKER CERTIFIED SOLUTION
Avatar of TedInAK
TedInAK
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of saturation
saturation

ASKER

No luck with that.  Any other ideas?
TedInAK's answer should work..

or try this
<td valign="bottom" style="vertical-align:bottom">
 <table><tr><td>Just your table here</td></tr></table>
</td>

Rockman
It works for me:

<table border="1" height="300">
   <tr>
      <td style="vertical-align:bottom">
         <table>
            <tr>
               <td>
                  This should be on the bottom
               </td>
            </tr>
         </table>
      </td>
   </tr>
</table>