0

我无法从滚动条中删除这种白色。如何删除它?

演示图像在这里

这是我的代码

.table-main-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
  }
  
  .table-main-container::-webkit-scrollbar-track {
    background-color: #2b2a2a;
    border-radius: 10px;
  }
  
  .table-main-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: linear-gradient(180deg, #d0368a 0%, #708ad4 99%);
    box-shadow: inset 2px 2px 5px 0 rgba(rgb(0, 0, 0), 0.5);
    background-color: rgb(15, 15, 15);
  }
4

0 回答 0