Bootstrap

css修改美化浏览器滚动条样式

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::webkit-scrollbar-thumb {
	cursor: pointer;
	background-color: rgba(0, 0, 0, .2);
	border-radius: 6px;
}
::webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, .4);
}
;