Within a containing DIV, I have a collection of images. The DIV is absolutely positioned to the right of its container. My goal is for the images to flow horizontally when they exceed the width of the parent container, but remain hidden so that I can scroll through them later.
<div id="parent">
<div id="propertyThumbnails">
<a href="pic1" class=""></a>
<a href="pic1" class=""></a>
<a href="pic1" class=""></a>
<a href="pic1" class=""></a>
</div>
</div>
To illustrate this concept, I have created a demo here. Just to clarify, I want the images to only flow horizontally and any that extend beyond the parent container should be hidden (I will add scrolling functionality to the propertyThumbnails container later).