Horizontal Spacing

M

mcp6453

Here's an easy one. I want a picture flush on the left margin of a page
with text aligned on the right side of the picture. The code
align="left" border="0" allows me to do that, but the text is too close
to the picture. I added hspace="5", but that obviously applies space to
both sides of the picture. Is there a way to add space to the right side
only?
 
E

Els

mcp6453 said:
Here's an easy one. I want a picture flush on the left margin of a page
with text aligned on the right side of the picture. The code
align="left" border="0" allows me to do that, but the text is too close
to the picture. I added hspace="5", but that obviously applies space to
both sides of the picture. Is there a way to add space to the right side
only?

Use CSS:
img.foo{
float:left;
margin-right:5px;
}
HTML:
<img class="foo" src="..." alt="..."><p>bla bla bla</p>
 
M

mcp6453

Els said:
mcp6453 wrote:




Use CSS:
img.foo{
float:left;
margin-right:5px;
}
HTML:
<img class="foo" src="..." alt="..."><p>bla bla bla</p>

I don't have access to the css file. Can I use inline css? The site is a
blog that accepts HTML.
 
M

Mark Parnell

Deciding to do something for the good of humanity, mcp6453
I don't have access to the css file. Can I use inline css?

I don't see why not.

<img style="float:left; width:100px; margin-right:5px;" src="..."
alt="..."><p>bla bla bla</p>

Replace the width above with the actual width of the image.
 
M

mcp6453

Mark said:
Deciding to do something for the good of humanity, mcp6453



I don't see why not.

<img style="float:left; width:100px; margin-right:5px;" src="..."
alt="..."><p>bla bla bla</p>

Replace the width above with the actual width of the image.

It works perfectly. Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top