I have an HTML table with large number of rows, and I need to right align one column.
I know the following ways,
<tr><td>..</td><td>..</td><td align='right'>10.00</td><tr>
and
<tr><td>..</td><td>..</td><td class='right-align-class'>10.00</td><tr>
In both the methods, I have to repeat the align or class parameter on every <tr>
tag. (If there are 1000 rows, I have to put align='right' or class='right-align-class' 1000 times.)
Is there any efficient way to do this ? Is there any direct way to say, align the third column in all rows to right ?