If you go to this link,
http://www.halscrib.com/index.php/web-club/results, you will see in the header, the columns are left-justified for text, and right-justified for non-text data.
But look at the footer row, which contains the same text as the header row. They are not right-justified properly!
When I look at the source code, I would expect it to show properly:
Code: |
<thead>
<tr>
<th class="ari-tbl-col-0 align_left col_4f4dc29d">Tournament</th>
<th class="ari-tbl-col-1 align_right col_251bd814">Games</th>
<th class="ari-tbl-col-2 align_right col_b3e00c14">Game Pts</th>
<th class="ari-tbl-col-3 align_right col_cdc2db6a">Games Won</th>
<th class="ari-tbl-col-4 align_right col_50e3b6b1">Net Pts</th>
<th class="ari-tbl-col-5 align_right col_54bfaf80">+ Pts</th>
<th class="ari-tbl-col-6 align_right col_08c13134">Movie</th>
</tr>
</thead>
|
and
Code: |
<tfoot>
<tr>
<th class="ari-tbl-col-0 align_left col_4f4dc29d">Tournament</th>
<th class="ari-tbl-col-1 align_right col_251bd814">Games</th>
<th class="ari-tbl-col-2 align_right col_b3e00c14">Game Pts</th>
<th class="ari-tbl-col-3 align_right col_cdc2db6a">Games Won</th>
<th class="ari-tbl-col-4 align_right col_50e3b6b1">Net Pts</th>
<th class="ari-tbl-col-5 align_right col_54bfaf80">+ Pts</th>
<th class="ari-tbl-col-6 align_right col_08c13134">Movie</th>
</tr>
</tfoot>
|
Did I mis-interpret something?