.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 place a smaller div around the one you want and hide the scroll bars.
source share