-2

I want to make horizontal strip of image thumbnails using HTML5 and CSS3. and scroll it horizontally. can anyone tell me how do i proceed?

sn3ek
  • 1,929
  • 3
  • 22
  • 32
user1609921
  • 9
  • 1
  • 1

1 Answers1

3

Try setting the css:

<div style="white-space:nowrap; overflow-x: scroll">
<img><img><img> <!-- Images here -->
</div>

nowrap prevents contents from wrapping, and overflow-x: scroll causes overflows in the x-direction to have a scroll bar

ronalchn
  • 12,225
  • 10
  • 51
  • 61