在我的PHP代碼中,我從數據庫中拉出兩列的表格,並在下拉列表中顯示它們。以下是代碼片段:在選擇HTML選擇標記中設置兩個不同元素
echo "<select id='isv' class='required'>";
while($row = pg_fetch_row($result)){
echo "<option><span class='options'>" . $row[0] . "</span> " . $row[1] . "</option>";
}
echo "</select><br>";
我想通過不同的樣式將它們分開。所以我寫了下面的CSS:
.options
{
color: red;
float: left;
text-align: right;
width: 15em;
margin-right: 1em;
}
但是,樣式不適用於選項。我在這段代碼中需要更改什麼?
如果你使用的是Firefox,一個非常方便的插件是Firebug。 – Don
你不能在一個選項標籤中有標記 – Musa
只是一個頭,但[this related](http://stackoverflow.com/questions/3354979/styling-part-of-the-option-text?rq=1 )將表明這種樣式的平臺依賴。 – jedwards