element-ui表格的头部border有空隙的解决办法
在app.vue中的style中写上样式.tableContent{padding: 20px !important;background: #ffffff;margin-top: 20px;}body .el-table th.gutter{display: table-cell!important;}body .el-table colgroup.gutt...
·
在app.vue中的style中写上样式
.tableContent{
padding: 20px !important;
background: #ffffff;
margin-top: 20px;
}
body .el-table th.gutter{
display: table-cell!important;
}
body .el-table colgroup.gutter{
display: table-cell!important;
}
这样子有border的表格不会出现头部单元格篡位的情况
更多推荐
已为社区贡献2条内容
所有评论(0)