滚动条简单更改

.text-wrap{
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  max-height: 80px;
  overflow-y: scroll;
}
.text-wrap::-webkit-scrollbar {
  width: 5px;
  height: 16px;
  background-color: #f5f5f5;
}
.text-wrap::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: rgba(31, 45, 61, 0.14);
}

猜你喜欢

转载自my.oschina.net/xuexipython/blog/1794953