antd-vue中的a-select选中后整体的选择框样式上发生上下浮动的情况怎么解决
时间: 2024-02-20 22:57:53 浏览: 57
参考了_vue-element-admin_与_ant-design-vue-pro__等优秀的开源_vue-ant
可以尝试使用 CSS 的 `outline` 属性来解决这个问题。在样式中添加如下代码:
```css
.ant-select-focused.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
outline: none;
}
```
这样就可以取消选中后的浮动效果。如果还有其他样式问题,可以进一步调整样式。
阅读全文