我制作了一个表格,并希望第一个单元格从右侧开始,而不是默认从左侧开始。我尝试更改 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>
谁能建议一种方法来改变这张桌子的浮动?