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

text won't align at top of table

Status
Not open for further replies.

MonicaX

Technical User
Jul 13, 2002
35
0
0
US
I've got text in a table that won't align at the top:

<td height="79"valign="top"><table width="150" border="0" cellpadding="0" cellspacing="0" class="Side_Links">

It looks fine in Dreamweaver, but in a bowser, it displays verticaly in the center of the table. I've been woking in Dreamweaver for years and never had this problem. I tried fixing it w/ css:

vertical-align: top;

This didn't work either.

Page:


Thanks!
 
try:
Code:
<table width="646" height="358" border="0" cellpadding="0" cellspacing="0" id="outer">
  <tr>
    <td align="center" valign="top"><table width="182" height="137" border="0" cellpadding="0" cellspacing="0" id="inner">
      <tr>
        <td align="center" valign="top">text</td>
      </tr>
    </table></td>
  </tr>
</table>

All the best!

:--------------------------------------:
fugitive.gif


All around in my home town,
They tryin' to track me down...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top