Floated and stacked images
by emgee
HTML
<img id="main-image"></img>
<div id="thumbs">
<img class="thumb-image"></img>
<img class="thumb-image"></img>
</div>
CSS
#main-image
{
float:left;
height:100px;
width:100px;
background-color:red;
margin-right:20px;
}
#thumb
{
float:right;
}
.thumb-image
{
display:block;
height:40px;
width:40px;
margin-bottom:10px;
}