自定义overflow轨道样式,并且滚动条两边存在间距(滚动条不贴边显示)

最终效果

在这里插入图片描述

实现思路

border + box-shadow

实现代码

::-webkit-scrollbar {
  width: 20px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  border: 6px solid rgba(0, 0, 0, 0);
  box-shadow: 14px 0px 0 #e3e3e3 inset;
}

::-webkit-scrollbar-thumb:hover {
  box-shadow: 14px 0px 0 #e3e3e3 inset;
}

你可能感兴趣的:(html,自定义滚动条)