Im trying to apply a custom scrollbar to a div called table-container. I've tried the following CSS:
.table-container {
overflow: scroll;
}
.table-container::webkit-scrollbar {
width: 12px;
}
.table-container::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
This does not work. If I take ::webkit-scrollbar out of the .table-container class it works but applies it to all elements with scroll enabled. I want the above code to only apply to the .table-container div.
Any ideas?
