Is there an easy way to set columns in a table to align differently? I have one column that contains a dollar value which I'd like right-aligned.
This is how I am doing it currently.
<style type="text/css">
<!-- .txtctr {text-align: center;} -->
</style>
and a sample row;
<tr class="txtctr">
<td><a href="SpecSheet.pdf">ItemName</a></td>
<td>infoA</td>
<td>infoB</td>
<td>infoC</td>
<td>infoD</td>
<td ><div align="right" >$349.65</div></td>
<td>infoF</td>
</tr>
Is there a better way than assigning the class to each row and using the div on the cell with the $$ ?
Thanks in advance
Boze
This is how I am doing it currently.
<style type="text/css">
<!-- .txtctr {text-align: center;} -->
</style>
and a sample row;
<tr class="txtctr">
<td><a href="SpecSheet.pdf">ItemName</a></td>
<td>infoA</td>
<td>infoB</td>
<td>infoC</td>
<td>infoD</td>
<td ><div align="right" >$349.65</div></td>
<td>infoF</td>
</tr>
Is there a better way than assigning the class to each row and using the div on the cell with the $$ ?
Thanks in advance
Boze