> Greetings,
>
[quoted text clipped - 8 lines]
> to block level status and are therefore not placed on the same
> line in which they are declared.
Correct.
> Now, I can compensate for this by using a negative top margin
> equal in magnitude to the line-height as is done with span 2b
> in the example below.
No need.
> 2. Is there a better way to get an inline element against the
> right/let side of the paragraph containing a line, such as
> when placing a hyperlink box to the right of a line of text
> that describes and points to it?
Place the float before the rest of the text that you want on the same
line.
Instead of this:
<span>Span 1</span>
<span style="float:right;">Right Floated Span 2</span>
<br/>
<span>Span 3</span>
write this:
<span style="float:right;">Right Floated Span 2</span>
<span>Span 1</span>
<br/>
<span>Span 3</span>

Signature
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: The Stranglers - All Day And All Of The Night
Michael Shell - 28 Jun 2005 02:53 GMT
> Place the float before the rest of the text that you want on the same
> line.
Well, it makes me feel a bit like an idiot, but at least I got a good
answer. In my defense, this is very counter intuitive - I would have
thought that placing it first would have given me an additional
line break/space at the start of the structure. For the record,
display:inline will not help either.
Thank you for your help,
Mike
Els - 28 Jun 2005 08:03 GMT
>> Place the float before the rest of the text that you want on the same
>> line.
[quoted text clipped - 3 lines]
> thought that placing it first would have given me an additional
> line break/space at the start of the structure.
Depends how you think about it - I see the float as "shove this to one
side, and see how much will fit in the freed space".
A bit like organising the mess in the attic or garage ;-)
> For the record,
> display:inline will not help either.
Display:inline and float are mutually exclusive :-)
> Thank you for your help,
You're welcome.

Signature
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -