首先,該問題的解決方案:CSS selector to bold only labels without child elements不能解決我的問題。用於無子元素的標籤的CSS選擇器
我只有文本標籤,其他文本和子輸入,選擇和textarea窗體的元素。
即:
<label class="control-label">State
<select name="status" id="status" class="form-control">
<option value="">Choose..</option>
...
</select>
</label>
和其他類似:
<label for="defect" class="control-label">Error</label>
我需要設置white-space: nowrap
到只和對上述問題的回答說,我嘗試以下沒有子HTML元素的標籤:
label{
white-space: nowrap; /* Label without HTML*/
}
label + label {
white-space: normal; /* Label with HTML */
}
但是,它不起作用。
我敢肯定,有沒有簡單的方法來做到這一點。 –
你可以修改標記嗎? – hungerstar
我不認爲有一種方法可以用選擇器來做到這一點。 JS解決方案是可以接受的嗎? – jfeferman