PDA

View Full Version : how to creat spaces between images?


Jakinspeil
05-24-2009, 05:58 PM
I have 4 thumb nail images and I want to align them horizontally with spaces in between them.

right now I just have:

<div class="thumbs">
<img src="1.jpg"><img src="2.jpg"><img src="3.jpg"><img src="4.jpg">
</div>

What is the associated CSS code to do that?

thetestingsite
05-24-2009, 06:12 PM
I believe the following should work.


.thumbs img {
padding: 5px;
}


Change the number in red to increase or decrease the space.
Hope this helps.

Jakinspeil
05-25-2009, 09:30 AM
padding didn't do anything.. Margin does though.


div.thumbs img {
margin: 15px;
}