autoscroll css code example

Example 1: javascript css autoscroll

// If you don't know when data comes, you can set an interval:
window.setInterval(function() {
  var elem = document.getElementById('yourDivWithScrollbar');
  elem.scrollTop = elem.scrollHeight;
}, 5000);

// If you do know when data comes, you can do it like the following:
var elem = document.getElementById('yourDivWithScrollbar');
elem.scrollTop = elem.scrollHeight;

Example 2: scrollbar css

.any-class::-webkit-scrollbar {
	width: 8px;
}
.any-class::-webkit-scrollbar-track {
	background: #c1c0c0;
}
.any-class::-webkit-scrollbar-thumb {
	background: #828282;
}
.any-class::-webkit-scrollbar-thumb:hover {
	background: #555;
}