最好在div中包装表单输入:
<div id="formContainer">
<div>
<label for="username">Username</label><input type="text" id="username">
</div>
<div>
<label for="password">Password</label><input type="text" id="password">
</div>
</div>
或者将list-style-type设置为none
包装在ul或ol列表中更好<ol id="formContainer">
<li>
<label for="username">Username</label><input type="text" id="username">
</li>
<li>
<label for="password">Password</label><input type="text" id="password">
</li>
</ol>
或者它是否重要?
答案 0 :(得分:1)
我会选择定义列表:
<dl>
<dt><label for='name'>blah</label></dt>
<dd><input type='text'></dd>
</dl>
答案 1 :(得分:0)
我总是使用table
,因为这样可以很容易地对齐字段。