el-table-column fixed 低版本浏览器兼容
时间: 2023-11-23 21:58:09 浏览: 74
基于ElementUI二次封装的支持自适应列宽的tablecolumn列组件
根据提供的引用内容,没有明确提到el-table-column fixed在低版本浏览器上的兼容性问题。但是可以通过覆盖el-table__fixed-right和el-table__fixed的CSS样式来解决高度错乱的问题。具体操作如下:
```css
.custom_table ::v-deep .el-table__fixed-right, .custom_table::v-deep .el-table__fixed {
height: 100% !important;
}
```
这段CSS代码可以覆盖el-table__fixed-right和el-table__fixed的样式,将它们的高度设置为100%。这样可以解决高度错乱的问题。
阅读全文