去掉el-select的边框
时间: 2023-05-27 20:05:39 浏览: 397
去掉下拉框的边框
5星 · 资源好评率100%
您可以使用以下CSS样式来去掉el-select的边框:
```
.el-select .el-input {
border: none;
}
```
这将消除el-select输入框的边框。如果您还想去掉下拉箭头,请使用以下样式:
```
.el-select__caret {
display: none;
}
```
阅读全文
去掉下拉框的边框