el-table隐藏滚动条和滚动条所占的gutter宽度

  • Post author:
  • Post category:其他




el-table隐藏滚动条和滚动条所占的gutter宽度

  /deep/ .el-table__body-wrapper::-webkit-scrollbar {
    /*width: 0;宽度为0隐藏*/
    width: 0px;
  }

  /deep/.el-table__body-wrapper::-webkit-scrollbar-thumb {
    border-radius: 2px;
    height: 50px;
    background: #eee;
  }

  /deep/.el-table__body-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.4);
  }
  /deep/.el-table th.gutter{
    display: none;
    width:0
  }
  /deep/.el-table colgroup col[name='gutter']{
    display: none;
    width: 0;
  }

  /deep/.el-table__body{
    width: 100% !important;
  }



版权声明:本文为weixin_40745445原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。