Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
.scrollable {
overflow: scroll;
height: 100px;
width: 100px;
border: 2px solid black;
scrollbar-width: none;
}
.scrollable::before {
display: block;
content: "overflowing content";
height: 300px;
width: 300px;
}
.pseudo8::-webkit-scrollbar-thumb {
background: cyan;
}
</style>
<div class="scrollable pseudo8"></div>