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?
Asked
Active
Viewed 3,358 times
-2
-
1[What have you tried?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) – PeeHaa Aug 19 '12 at 11:25
1 Answers
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