<!DOCTYPE html>
<html lang="en">
<head>
<title>Custom Scrollbars</title>
<style>
body {
height: 2000px; /* For demonstration */
}
/* Custom scrollbar styling */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: darkblue;
}
::-webkit-scrollbar-thumb {
background-color: lightgreen;
border-radius: 10px;
border: 3px solid darkcyan;
}
</style>
</head>
<body>
Scroll to see the custom scrollbar!
</body>
</html>