/ Gists / custom css scrollbar
On gists

custom css scrollbar

CSS

custom.css Raw #

div {
	height: 300px;
	overflow-y: auto;
	
}

div::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

div::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

div::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}