element中表格中的表头与表格内容边框错位的解决方法
2021-02-08 本文已影响0人
Edwinpanzzz
在 App.vue 中添加:
<style>
/*element中表格中的表头与表格内容边框错位的解决方法*/
body .el-table th.gutter {
display: table-cell !important;
}
</style>
亲测有效。转自 element中表格中的表头与表格内容边框错位的解决方法。
在 App.vue 中添加:
<style>
/*element中表格中的表头与表格内容边框错位的解决方法*/
body .el-table th.gutter {
display: table-cell !important;
}
</style>
亲测有效。转自 element中表格中的表头与表格内容边框错位的解决方法。