0

I have the following css

overflow: scroll;

How do I hide scrollbars in firefox and internet explorer?

I'm already using overflow: hidden on the parent element.

I have the following html

<div class="parent">
<div class="inner">
</div>
</div>

I have overflow: scroll on the inner element and overflow: hidden on the parent element.

I also have

.glb-nav::-webkit-scrollbar {
    display: none;
}

which hides scrollbars in firefox and safari.

Adam Buchanan Smith
  • 9,422
  • 5
  • 19
  • 39
James Umeris
  • 599
  • 2
  • 7
  • 15
  • 1
    I think it is not necessary to hire scroll bars, they work for free for everyone :D – Roberto Dec 18 '15 at 22:26
  • Possible duplicate of [Hide scroll bar, but still being able to scroll](http://stackoverflow.com/questions/16670931/hide-scroll-bar-but-still-being-able-to-scroll) – Okku May 15 '16 at 04:08

0 Answers0