输入的100%宽度或表格中的选择

时间:2011-11-03 03:16:42

标签: html css html-table

我希望Title,Test1和Test2的宽度自动填充所有“td”(标签除外),而不是设置其宽度。

<table>
    <tbody>
        <tr>
            <td colspan="2"><span class='star'>*</span><label>Title:</label>{{ form.name }}</td>
        </tr>
            <td><span class='star'>*</span><label>Test1:</label>{{ form.dataSecrecy }}</td>
            <td><span class='star'>*</span><label>Test2:</label>{{ form.costType }}</td>
        </tr>
    </tbody>
</table>

实施例: enter image description here

我想让他们这样:

enter image description here

不是这个:

enter image description here

有什么建议吗?

1 个答案:

答案 0 :(得分:3)

<input style='width:100%;' ...>