larin555
larin555

Reputation: 1699

Overflow and scrolling

Here's my fiddle : http://jsfiddle.net/sruHf/1/

I want the images to be next to each other, and to scroll the horizontally only. Currently, the images are next to each other...but it wraps down to another line...instead of continuing to stay next to each other.

Any idea how I can do that? I tried with overflow-x : auto and overflow-y : hidden, but it does not seems to work.

Thanks!

Upvotes: 1

Views: 95

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324790

Add white-space: nowrap to the CSS.

Upvotes: 5

Related Questions