element-ui的table表格控件表头与内容列不对齐问题的解决方法

4,026 阅读1分钟
1,将以下样式代码添加到index.html、或app.vue中(必须是入口文件,起全局作用!)
body .el-table th.gutter{
display: table-cell!important;
}

2,在全局样式表中添加样式

.el-table th { display: table-cell!important; }