Is there a way of having an overflowing div that hides the overflow, doesn't have a scroll bar but is still scrollable (by means of the mouse wheel / touch input)?
e.g.
<!DOCTYPE html>
<div id="longtext" style="width:100px; height:100px;">
Lorem ipsum....
</div>
My CSS attempts have failed as overflow: hidden;
stops the area being scrollable whilst overflow: auto
/overflow: scroll
has the scrollbars.
Thanks in advance