在对 CSS 进行了大量的修改之后,我设法让我的表单元素正确排列。不幸的是,我一生都无法弄清楚如何修复标签/图像的位置错误。我希望它们在选择框旁边居中排列,但它们在它的顶部对齐,到目前为止我没有尝试过任何工作。
<fieldset style="width:62%; float:left; margin-left: 19%;">
<label style="width: float: left;">Type</label>
<select style="width:40%; float: left;">
<option>Motherboard</option>
<option>Memory</option>
<option>Processor</option>
</select>
<label style="width:auto; float: left;">Item</label>
<select style="width:40%; float: left;">
<option>Motherboard</option>
<option>Memory</option>
<option>Processor</option>
</select>
<a href="#"><img src="images/icn_trash.png" style="width:auto; float: left;"></a>
<a href="#"><img src="images/icn_new_article.png" style="width:auto; float: left;"></a>
</fieldset><div class="clear"></div>
更新
将其更改为使用 Table 时,它显示如下...
<div id="inv1" class="inventory" style="margin:0; padding:0;">
<fieldset style="width:62%; float:left; margin-left: 19%;">
<table style="width:100%">
<tr>
<td style="width:5%;"><label style="width:auto;">Type:</label></td>
<td><select style="width:100%;">
<option>Motherboard</option>
<option>Memory</option>
<option>Processor</option>
</select></td>
<td style="width:5%;"><label style="width:auto;">Item:</label></td>
<td><select style="width:100%;">
<option>Motherboard</option>
<option>Memory</option>
<option>Processor</option>
</select></td>
<td><a href="#"><img src="images/icn_trash.png" style="width:auto;"></a></td>
<td><a href="#" class="btnAddInventory"><img src="images/icn_new_article.png" style="width:auto;"></a></td>
</tr>
</table>
</fieldset><div class="clear"></div>
</div>