safari 下 el-table 表格错乱问题

css设置如下,别问为啥好的,问我也不知道 呜呜呜

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

body .el-table colgroup.gutter {
  display: table-cell !important;
}

table {
  width: 100% !important;
}

.el-table__body {
  // 使表格兼容safari,不错位
  width: 100%;
  table-layout: fixed !important;
}

 

你可能感兴趣的:(safari,css)