Click to See Complete Forum and Search --> : html code for spaces between pictures


Brendi
02-03-2007, 06:27 PM
How do I add a few spaces between 3 pictures in HTML code that are supposed to be centered across the page without having to use the " " between them? I do not want them right next to eachother.

Brendi

ray326
02-03-2007, 06:43 PM
margin or padding?

Brendi
02-03-2007, 07:01 PM
Hi ray326,

I think just padding, but having the code for each would be nice.

Brendi

jython
02-03-2007, 07:08 PM
using &# 12288; instead of  
It gives a little more space than "nbsp"

Brendi
02-03-2007, 07:19 PM
Thanks.

Brendi

Brendi
02-03-2007, 07:28 PM
Ummm.... tried the &# 12288; and it didn't work. Did I maybe not put it in the right place?

Brendi

felgall
02-04-2007, 02:11 AM
<img src="img1.gif" style="float:left;margin:50px;">
<img src="img2.gif" style="margin:0 auto;">
<img src="img3.gif" style="float:right;margin:50px;">

Then just adjust the margins on the first and third images until the spacing is right. You don't need any spacing characters at all.