Text Links Ads : Marketing Tips Store : Search Engine Optimization Strategies
WebPosition Gold Pro : Domain Registration Bank : Optilink Software : GoDefy
Mike's Marketing Tools : Mike's Ecommerce Software : Text Links Guide
 
Web HTML-HTML.com
You are here: HTML Codes > Tables

<TR ...>

Usage Recommendation
use it if you use <TABLE ...>

  • ALIGN: horizontal alignment of cell contents
  • HALIGN
  • VALIGN: vertical alignment of cell contents
  • BGCOLOR: background color
 

<TR ...> designates a table row. Each <TR ...> element contains one or more <TD ...> or <TH ...> elements. For example, this code creates a table with two rows:

<TABLE BORDER CELLPADDING=8>
<TR> <TD>peaches</TD> <TD>grapes</TD> <TD>oranges</TD></TR>
<TR> <TD>watermelon</TD> <TD>limes</TD> <TD>watermelon</TD></TR>
</TABLE>

which gives us this table

peachesgrapesoranges
watermelonlimeswatermelon

Technically the end tag (</TR>) is optional. However, Netscape has a history of getting confused when the end tag is missing so it's best to always use </TR>.

<TR ALIGN="..."> >>>

Copyright © 2002-8 Art Dacor USA LLC. All Rights Reserved.
3727 West Magnolia Blvd #489, Burbank, CA, 91505, USA.
www.HTML-HTML.com