Hi Rachel,
Sorry, I was very tired when I wrote the message, obviously I wasn't
being clear and very confused myself about 'inline element' in what I
was trying to illustrate in my example - you are right about paragraph
and heading are block-level elements. What I meant actually was,
'inline content' or 'inline formatting content' - they are probably
the same meaning, but my brain has difficulty to convey/understand
English when I get very tired, so I am not 100% fully sure what I try
to explain :-)
Thank you for the suggestion about using absolute position in the span
class, unless I am missing something that I don't already know, but I
don't think it will work well for the layout I am working.
Anyhow, please see the example in this page:
http://lotusseedsdesign.com/firefoxbug.html
I have not tested this page in IE as my Parallels desktop has
networking issue and I can't connect to the Internet from Windows XP,
so I am not 100% sure if the problem only occur in Gecko browsers.
Thanks!
tee
On Mar 12, 2008, at 2:26 PM, Rachel May wrote:
Hi Tee,
Without seeing an example I'm a bit confused by your question as
paragraph and heading tags are already block-level elements by
default...
Another method to try (depending on what content you are putting in
the tags) could be to use positioning instead:
<h5>Contact Information <span>Edit</span></h5>
h5{
position: relative;
}
h5 span{
position: absolute;
right: 0;
}
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************