Reputation: 436
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
Reputation: 1145
overflow:auto; will show scroll bars only if required.
overflow:auto;
Upvotes: 12