2013-05-01 48 views
0

的寬度,我有一個表格單元格在一個表如下:如何使一個浮動範圍,並選擇元素填寫表格單元格

<td> 
<span class="subtitle no-select" id="billing-status-span" style="float:left"> Status </span> 
<select id="bill-status" style="float:left"> 
    <option>One of many options with lots of text and therefore width</option> 
</select> 
</td> 

請告知

例如。想象一下td是100px寬(實際上td寬度是動態的,因爲它是基於百分比的)。由於選擇寬度大於100px,我該如何處理?我希望選擇寬度縮小...但注意選項寬度迫使選擇大於100px

+0

你是說「我如何使浮動跨度填充表格單元的寬度」? – hjpotter92 2013-05-01 11:00:09

+0

編號想象一下td是100px寬(實際上td寬度是動態的,因爲它是基於百分比的)。由於選擇寬度大於100px,我該如何處理?我想選擇寬度縮小...但注意選項寬度迫使選擇大於100px – 2013-05-01 11:16:49

回答

-1

我認爲不需要標籤只是爲了狀態。你可以只是 就像

<td>Status<select id="bill-status"> <option>One of many options with lots of text and therefore width</option></select></td> 
+0

真的嗎?你嘗試過嗎? – Dementic 2013-06-18 14:47:35

相關問題