vue less下拉框背景色和选中后的背景色以及要选时的背景色设置

select {
  background-color: white;
}
select option {
  background-color: red;
}
select option:checked {
  background-color: red;
}

你可能感兴趣的:(less,笔记,vue,html,前端)