blob: dc4a81e6bff3dd7230762b240050ba2d5219a8b0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!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>
|