10 lines
247 B
HTML
10 lines
247 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
::-webkit-scrollbar-track, ::-webkit-scrollbar {
|
|
color: red;
|
|
}
|
|
::-webkit-scrollbar-track:horizontal:disabled {
|
|
content-visibility: hidden;
|
|
}
|
|
</style>
|
|
<main style="height: 100px; width: 100px; overflow: scroll;"></main>
|