テーブルを作成し、最初のセルをデフォルトとして左からではなく右から開始するようにします。CSSでfloat属性を変更しようとしましたが、役に立たないようです。コードは次のとおりです。
<table border="0" width="100%" cellspacing="0" align="center" class="result_table">
<tr align="right">
<th bgcolor="#cccccc" align="right">1</th>
<th bgcolor="#cccccc" size="17">2</th>
<th bgcolor="#cccccc">3</th>
<th bgcolor="#cccccc">4</th>
</tr>
</table>
<style>
table.result_table {
float:right;
}
</style>
このテーブルのフロートを変更する方法を誰かが提案できますか?