element-ui 固定表頭 固定列 最後一行錯位問題解決

先上BUG

 

 

 

解決方案

  /* 設置滾動條的樣式 */
  /deep/::-webkit-scrollbar {
      width: 10px !important;
      height:10px !important;
      background-color: #8487879e;
  }

  /deep/ .el-table__fixed::before, .el-table__fixed-right::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: unset;
    z-index: 4;
}

 

搞定

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章