uniapp去除下拉框的边框
时间: 2023-09-06 13:07:18 浏览: 152
去掉下拉框的边框
5星 · 资源好评率100%
在uniapp中去除下拉框的边框,可以在样式中使用以下代码:
```css
select {
border: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
```
其中,`border: none;`是去除边框的样式,`-webkit-appearance: none;`、`-moz-appearance: none;`和`appearance: none;`是为了去除默认的下拉箭头,使其更加美观。
阅读全文