我想佈局以下列方式顯示HTML控件水平
並不知我已經失敗,它到現在我的控制。這裏就是我試圖至今:
<div style="">
<label style="float: left">
Products:</label>
<ol style="list-style: decimal">
<li id="product" style="margin-left: 10px">
<select style="float: left; width: 100px;">
<option>Product A</option>
<option>Product B</option>
<option>Product C</option>
</select>
<input type="text" value="40" style="width: 20px; float: left;" />
<a style="float: left;">Delete</a> </li>
<li id="product" style="margin-left: 10px">
<select style="float: left; width: 100px;">
<option>Product A</option>
<option>Product B</option>
<option>Product C</option>
</select>
<input type="text" value="40" style="width: 20px; float: left;" />
<a style="float: left;">Delete</a> </li>
</ol>
</div>
你能幫忙嗎?謝謝。
你有一個錯字。 http://jsfiddle.net/eJvQa/5/ – ANeves