このコードはFirefoxでのみ機能し、すべてのブラウザでは機能しませんが:after
、他のブラウザでも機能します。
HTML:
<select>
<option> select </option>
<option class="red"> one </option>
<option class="green"> two </option>
<option class="blue"> three </option>
</select>
CSS:
option:after {
content: " ";
height: 5px;
width: 5px;
border-radius: 5px;
display: inline-block;
}
option.red:after { background: #c00; }
option.green:after { background: #0c0; }
option.blue:after { background: #00c; }
JSフィドル: http: //jsfiddle.net/abude/EAdvP/