无法在HTML表格中对齐复选框

时间:2016-01-16 06:40:32

标签: html css html-table text-align

我无法让checkboxes的第一列中的table在右侧对齐。

<form>
   <div>    
        <table>
            <th>Trail</th>
            <th>Year</th>
            <th>Mileage</th>
            <th>Direction</th>
            <tr>
                <td>
                    <label for="AT">AT</label>
                    <input type="checkbox" id="AT" name="AT"  value="Yes">
                </td>

我正在使用CSS代码:

input [type=checkbox] {
    text-align: right;
}

1 个答案:

答案 0 :(得分:0)

尝试这个

怎么样?
<table>
    <th>Trail</th>
    <th>Year</th>
    <th>Mileage</th>
    <th>Direction</th>
    <tr>
        <td>
            <input type="checkbox" id="AT" name="AT"  value="Yes"/>
            <label for="AT">AT</label>
        </td>

这是jsfidlle