How to position a span inside a headline tag?

Posted by citronas on Stack Overflow See other posts from Stack Overflow or by citronas
Published on 2010-04-22T11:15:04Z Indexed on 2010/04/22 11:23 UTC
Read the original article Hit count: 219

Filed under:
|
|
|
|

I'm forced to find a solution for the following situation:

I have a h1 tag, like this:

<h1 style="text-align: left">FOO FOO FOO<span class="h1subSpan">FOO 1 Foo 2</span></h1>

The result should be like the following:
FOO FOO FOO this space is invisible and achived through floating Foo1 Foo 2

This solution works with FF, Opera and IE8. How can I adapt this, to work with IE 7 as well?

.h1subSpan
{
  font-size:small;
  float:right;
  padding-right:19px;
  padding-top:5px;
}

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about css