Here is the HTML code snippet I have:
<div id="thumbs">
...8 image tags with width and height of images set to 100 x 100px
</div>
Below is the corresponding CSS:
#thumbs
{
overflow:hidden;
float:left;
position:relative;
background-color:white;
height:100px;
width:100%;
}
#thumbs img
{
padding:5px;
}
At the lowest resolution setting - 800 x 600, the last image (img8) moves to the next line. How can I ensure that all images remain on a single line even at lower resolutions?