vote up 0 vote down star

This is the HTML:

<h2>
  Log in
  <a onclick="doSomething()" href="#" class="float-right">&nbsp;</a>
</h2>

This is the CSS:

.float-right {
    float: right;
    background: url(img.png);
    width: 10px;
    height: 10px;
    text-decoration: none;
}

So this should make the .float-right element float to the right of the text in the header, but in IE7 it doesn't! I don't care about IE6, I just have to get this working in IE7 and newer.

flag

What is the CSS of h2? What is the width? Put a border on the h2 element and see what the width is. – Zoidberg Nov 5 at 16:08
The CSS for h2 is just font-size, font-weight and padding-bottom... Should be irrelevant. – blahblah Nov 5 at 16:11

3 Answers

vote up 1 vote down check

Have you tried to move the code around?

<h2>
  <a onclick="doSomething()" href="#" class="float-right">&nbsp;</a>
  Log in
</h2>
link|flag
This actually works... But why!? – blahblah Nov 5 at 16:21
I think it's because h2 by default is a block, which takes up 100% width. IE calculates it's width before seeing the floated element. but this is just a guess. – Samuel Nov 5 at 16:24
vote up 0 vote down

Is there a sample online we could see?

link|flag
Sorry, there is not. – blahblah Nov 5 at 21:16
vote up 2 vote down

try adding display:block; to the css

link|flag
Yes, thats what is missing, also see my other comment. – Zoidberg Nov 5 at 16:09
1  
I thought display: block is implied on floated elements...and it still doesn't work when I add that rule. – blahblah Nov 5 at 16:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.