1. 程式人生 > 其它 >頁面滾動條美化

頁面滾動條美化

技術標籤:# 工作css

樣式

在這裡插入圖片描述

css

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

::-webkit-scrollbar-track {
	background: #f6f6f6;
	border-radius: 2px;
}

::-webkit-scrollbar-thumb {
	background: #aaa;
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
	background: #747474;
}

::-webkit-scrollbar-corner
{ background: #f6f6f6; }