Tag: scrollbar

[ANSWERED] html – Scroll bar inside a div with table

Solution 1 : .container { background-color: #9498b3; width: 300px; height: 100px; overflow-y: scroll; border-radius: 10px; } .container::-webkit-scrollbar-track { border-radius: 10px; background-color: red; } .container::-webkit-scrollbar-thumb { border-radius: 10px; background-color: green; }…