css

62 阅读1分钟

修改滚动条样式

.doc-content {
  color: #373737;
  height: calc(100vh - 215px);
  overflow-y: auto;
  padding-right: 8px
}

.doc-content::-webkit-scrollbar {
  width: 6px;
}

.doc-content::-webkit-scrollbar-thumb {
  background-color: #888; /* 滚动条的颜色 */
  border-radius: 10px; /* 滚动条的圆角 */
}

.doc-content::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* 滚动条悬停时的颜色 */
}

//.doc-content::-webkit-scrollbar-track {
//  background: #f1f1f1; /* 滚动条轨道的颜色 */
//  border-radius: 10px; /* 滚动条轨道的圆角 */
//}