Posted by mcp6453 on 01/24/06 07:29
Els wrote:
> mcp6453 wrote:
>
>
>>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>
>
>
I don't have access to the css file. Can I use inline css? The site is a
blog that accepts HTML.
[Back to original message]
|