I have the following css but the scroll bars are visible. how can I make them invisible (scrollable div without scrollbars)?
.myDiv
{
height:300px;
overflow: scroll;
}
.myDiv {
width: 200px;
height:300px;
overflow: scroll;
}
.wrapper {
width: 183px;
height: 283px;
overflow: hidden;
border: 1px solid black;
}
<div class="wrapper">
<div class="myDiv">
floating div content...
</div>
</div>
This might work - basically you're placing a smaller div around the one you want and hiding the scroll bars.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With