Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在所有浏览器中加粗选择的第一个选项?
我们如何需要为下拉列表编码,以便下拉列表中只有第一个项目是斜体和不同的颜色。
CSS可以解决问题...
select option:first-child{ font-style:italic; color:red; }
http://jsfiddle.net/79dk5/