<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 300px;
height: 600px;
background: rgb(12,34,56);
overflow-y: auto;
}
.aaa{
height: 900px;
}
.box::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.box::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
}
.box::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.15);
border-radius: 3px;
-webkit-box-shadow: inset 0 0 5px rgba(37, 37, 37, 0.05);
}
</style>
</head>
<body>
<div class="box">
<div class="aaa"></div>
</div>
</body>
</html>