首先假设这有一个select下拉菜单。

然后,清除原有样式

select{
     appearance:none;
     -moz-appearance:none; 
     -webkit-appearance:none;
     outline: none;
     border: none;

}
select::-ms-expand{ display: none; }//ie

最后,贴上需要的background

background: url(../img/select.png) no-repeat scroll 90% center transparent;
padding-right: 40px;
background-size: 10px;//此三项按情况调整

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
  • 2022-02-07
  • 2021-06-06
  • 2022-12-23
  • 2021-09-17
猜你喜欢
  • 2021-05-25
  • 2021-11-23
  • 2022-12-23
  • 2021-12-06
  • 2021-04-09
相关资源
相似解决方案