Aligning table with numbers

liunx

Guest
Is is possible that you can align a table with numbers like:<br />
<br />
align="123"<br />
<br />
or something like<br />
<br />
align="60%"<br />
<br />
Is there a way to do this?<!--content-->you don't align a table per se ... but the content in a table row (tr) and the table data cell (td). <br />
<br />
(from <!-- w --><a class="postlink" href="http://www.devguru.com">www.devguru.com</a><!-- w -->)<br />
align<br />
The align attribute is used to set the horizontal alignment of the cell contents. The possible values are center, char, justify, left, and right. <br />
<br />
valign<br />
The valign attribute is used to set the vertical alignment of the cell contents for all of the cells in a single row. The possible values are baseline, bottom, middle, and top. <br />
<br />
<br />
by creative use of align, valign, and proper nesting of tables can get you align a table 123pixels from the left... or 60% to the right. <br />
<br />
Another way would be to use CSS and place div's holding the table at the appropriate location.<!--content-->
 
Back
Top