Click to See Complete Forum and Search --> : Aligning text in html


g__
08-23-2005, 04:20 PM
Is there a way to line text up that are in 2 different cells that are side by side?

e-realmz
08-23-2005, 05:08 PM
Align the text inside each cell with one of these codes.

<TD ALIGN = "left"></TD>
<TD ALIGN = "center"></TD>
<TD ALIGN = "right"></TD>

g__
08-24-2005, 10:30 AM
I'm sorry I meant how do you valign the cells, or rather text, that are in different tables that are side by side

NogDog
08-24-2005, 01:19 PM
<td style="vertical-align: top">align to top of cell</td>
<td style="vertical-align: middle">align to middle of cell</td>
<td style="vertical-align: bottom">align to bottom of cell</td>