美文网首页
element-table表头错位

element-table表头错位

作者: bypwan | 来源:发表于2020-05-07 14:51 被阅读0次

    1,通过css解决表头错位的问题

    如el-table在容器类名为table-container中

      .table-container /deep/ .el-table th.gutter{
       display: table-cell!important;
      }
    
     th.gutter,
      colgroup.gutter {
        display: block !important;
        width: 6px !important
      }
      .el-table th.gutter{
       display: table-cell!important;
      }
    

    这里设置width:6px是因为我们通过css改变了浏览器滚动条的宽度,表头错位也是因为出现滚动条的原因
    存在问题:只解决了谷歌浏览器的问题

    相关文章

      网友评论

          本文标题:element-table表头错位

          本文链接:https://www.haomeiwen.com/subject/poubwhtx.html