Alignment Examples


Right Aligned 2 Column 3 Row Table with Border


<TABLE BORDER ALIGN=RIGHT>
<TR> <TH>Col 1 Row 1</TH> <TH>Col 2 Row 1</TH></TR>
<TR> <TD>Col 1 Row 2</TD> <TD>Col 2 Row 2</TD></TR>
<TR> <TD>Col 1 Row 3</TD> <TD>Col 2 Row 3</TD></TR>
</TABLE>

Col 1 Row 1Col 2 Row 1
Col 1 Row 2Col 2 Row 2
Col 1 Row 3Col 2 Row 3
Note: Text will wrap around the table if an Align = Left or Right attribute is given. It will not flow around a Center Aligned table. The text should be placed in the code after the table.


Left Aligned 2 Column 3 Row Table with Border


<TABLE BORDER ALIGN=LEFT>
<TR> <TH>Col 1 Row 1</TH> <TH>Col 2 Row 1</TH></TR>
<TR> <TD>Col 1 Row 2</TD> <TD>Col 2 Row 2</TD></TR>
<TR> <TD>Col 1 Row 3</TD> <TD>Col 2 Row 3</TD></TR>
</TABLE>

Col 1 Row 1Col 2 Row 1
Col 1 Row 2Col 2 Row 2
Col 1 Row 3Col 2 Row 3
Note: Text will wrap around the table if an Align = Left or Right attribute is given. It will not flow around a Center Aligned table. The text should be placed in the code after the table.


Center Aligned 2 Column 3 Row Table with Border


<TABLE BORDER ALIGN=CENTER>
<TR> <TH>Col 1 Row 1</TH> <TH>Col 2 Row 1</TH></TR>
<TR> <TD>Col 1 Row 2</TD> <TD>Col 2 Row 2</TD></TR>
<TR> <TD>Col 1 Row 3</TD> <TD>Col 2 Row 3</TD></TR>
</TABLE>

Col 1 Row 1Col 2 Row 1
Col 1 Row 2Col 2 Row 2
Col 1 Row 3Col 2 Row 3
Note: Text will wrap around the table if an Align = Left or Right attribute is given. It will not flow around a Center Aligned table. The text should be placed in the code after the table. Netscape 3.0 does not support a center align attribute for Tables. To have Netscape show a table centered, use the Center format command.