panthro
panthro

Reputation: 24061

Remove scroll bars on div in IE?

I have a div with the property:

overflow-y: scroll;

On IE11 (havent tested other versions of IE yet) the div has a vertical grey scroll bar. Is there a way to remove this? But still maintain the overflow scroll?

I searched SO for an answer but only could find one relating to the body scroll bars and not a div.

Upvotes: 1

Views: 63

Answers (1)

Tushar
Tushar

Reputation: 87203

Use auto property

overflow-y: auto;

scroll will always add scrollbar whether content is overflown or not. Using auto will show the scrollbar only when content is overflown.

MDN Doc

Upvotes: 2

Related Questions