欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修改浏览器滚动条样式

程序员文章站 2022-03-05 09:10:35
...
::-webkit-scrollbar {
	width: 8px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.2);
	border-radius: 6px;
	cursor: pointer;
}
::-webkit-scrollbar-track {
	background-color: #ddd;
	border-radius: 6px;
}