.el-table--group, .el-table--border { // border: none !important; border-color: #4dd2ff !important; }右边不显示对应颜色
时间: 2024-03-08 07:48:11 浏览: 85
wpf border 边框不同颜色
5星 · 资源好评率100%
根据你提供的代码,你想要将 `el-table` 表格的边框颜色设置为 `#4dd2ff`,同时取消 `el-table` 表格的边框线条,但是你发现右边没有显示对应颜色。这可能是由于以下原因:
1. 可能存在其他样式或代码影响了 `el-table` 表格的样式,导致无法正常显示颜色,你需要检查其他代码是否覆盖了你设置的样式。
2. 可能你的样式设置存在错误,你需要检查你的样式设置是否正确。
下面提供一种可能的解决方案,你可以尝试一下:
```css
.el-table--group::before,
.el-table--group::after,
.el-table--border {
border: none !important;
border-top: 1px solid #4dd2ff !important;
border-bottom: 1px solid #4dd2ff !important;
}
```
在这个样式中,我们使用 `border-top` 和 `border-bottom` 属性来设置 `el-table` 表格的上下边框颜色为 `#4dd2ff`,同时取消了 `el-table` 表格的左右边框线条。你可以根据自己的需要进行修改。如果你的代码中还存在其他样式可能会影响 `el-table` 表格的样式,你需要进一步检查和调试。
阅读全文