Make the div container wide enough to handle all your images.
Let's say all your images are 300 pixels by 300 pixels ;. if you have 6 images, your div will be 1800 pixels wide
Just make the div container wide enough to fit all your images and they will not wrap. Then place each image on the left.
<style> #images { width: 1800px; height: 300px; } #images img { float: left; } </style>
I suspect someone with much more CSS knowledge will have a better way? ...
source share