【CSS】改变滚动条样式,给滚动条小姐姐化个妆

众所周知,Windows 下渲染的原生滚动条并不是那么好看。
既然我们知道 CSS 相当于化妆品,那么我们怎么通过 CSS 让滚动条小姐姐变个妆呢?

Windows 7下的默认滚动条样式
在这里插入图片描述

talk is cheap, show me the code.

::-webkit-scrollbar{
	width:8px;
	height:8px;
}
::-webkit-scrollbar-track{
	background: #f6f6f6;
	border-radius:2px;
}
::-webkit-scrollbar-thumb{
	background: #cdcdcd;
	border-radius:2px;
}
::-webkit-scrollbar-thumb:hover{
	background: #747474;
}
::-webkit-scrollbar-corner {
	background: #f6f6f6;
}

效果图
在这里插入图片描述
细心的同学也可以发现CSDNMarkdown编辑器也是改变了滚动条样式的:
在这里插入图片描述
好了,今日份成长快乐(水贴)完毕!!!

猜你喜欢

转载自blog.csdn.net/AV_woaijava/article/details/106383278