右对齐一列,左对齐另一列,在一个表内

时间:2011-09-02 09:22:10

标签: html css html-table text-alignment

我创建了一个包含2列的html表。我希望包含文本的第一列右对齐,但我希望第二列保持左对齐,因为它包含复选框。对于演示,它看起来,但我不知道。我试过创建一个td class =“column1”然后text-align:right;在CSS但没有运气。

非常感谢任何想法。

HTML

<td class="column1">Retrieve Logs:</td>
<td class="column2"><input type=checkbox name="getcamlogs" checked="checked"></td>

CSS

td.column1 {
   text-align: right;
}

1 个答案:

答案 0 :(得分:6)

在这里,你应该这样做:)

<style>
    #mytable {width:500px; margin:0 auto;}
    #mytable td {width:250px;}
    #mytable .left {text-align:right; background:#333;}
    #mytable .right {text-align:left; background:#666;}
</style>

<table id="mytable">
    <tr>
        <td class="left">1</td>
        <td class="right">2</td>
    </tr>   
</table>