【问题标题】:Changing the blue color of select box in html [duplicate]更改html中选择框的蓝色[重复] 【发布时间】:2017-05-12 08:28:58 【问题描述】: 我想在选择选项中悬停下拉菜单时显示不同的颜色,而不考虑默认的蓝色。可以使用 CSS 吗? 【问题讨论】: 标签: html css 【解决方案1】: 您可以为此目的使用悬停伪类。像这样 select:hover { background: #fff2a8; } 【讨论】: