Want to display 4 images in a row, with a description below each image

pirasath

New Member
I'm tring to practice table-less design, and I trying to get the following:4 images per row, and under each image is the name of the image.So my DOM:\[code\]<div id="images"> <div class="imageblock"> <div class="image"><a href=""><img src=""/></a></div> <div class="meta">some filename</div> </div> <div class="imageblock"> <div class="image"><a href=""><img src=""/></a></div> <div class="meta">some filename</div> </div> ..</div>\[/code\]
 
Top