ilarsona
ilarsona

Reputation: 436

Overflow-x scroll but otherwise hide the scrollbar

I have just a simple line of code...

overflow-x: scroll;

... and it causes a scroll bar to appear in Chrome. How do I tell it to go away unless I need it?

Upvotes: 5

Views: 3412

Answers (1)

Pradyumna Challa
Pradyumna Challa

Reputation: 1145

overflow:auto; will show scroll bars only if required.

Upvotes: 12

Related Questions