PDA

View Full Version : How to place text in tables


DezQuetoz
10-14-2003, 04:53 AM
I am using tables for the first time.
I want the text in the menu-column to position in top. but dont know how. have tried every code i can think of in the <td> tag but it doesnt work. How am i gonna do this? If you need the code send me an email and i can send it for you.

does enyone have a good suggestion to what program i can use to split an image to?

Thanks

tmmoose
10-14-2003, 05:04 AM
<TABLE WIDTH=500><TR>
<TD><P>text text text</P> </TD>
</TD></TR>
</TABLE>

table info site (http://www.gbdl.com/gbdl/htdocs/howto/samples/html/httb3.htm)

themadpoet
10-20-2003, 02:21 PM
If I understand you right you want the text in top of cells.

Use the following tags inside td and it will put it at top and centered.

<td align="center" valign="top">

The first can be left, center or right and the second can be top, center or bottom.

Hope this helps.