Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the follow code:

// CSS
.foo strong {
    float: right;
}

// HTML
<div class="foo">
    foo
    <strong>bar</strong>
</div>

And want to float the "strong' to right, but IE7 don't recognize the action..

Wrong

enter image description here

Correct

enter image description here

share|improve this question
2  
Try putting the bar before the foo. – animuson Feb 11 '12 at 20:41
What animuson said and also try wrapping "foo" in a tag. – elclanrs Feb 11 '12 at 20:46
Perfect! May you post a answer, to close this questuion? – Gabriel Santos Feb 11 '12 at 20:49
1  
@Gabriel: I would have, but I don't like posting incomplete answers, and that comment was kind of a "on the way out the door throw-it-out-there" comment. – animuson Feb 12 '12 at 2:33

1 Answer

up vote 1 down vote accepted
<div class="foo">
    <strong>bar</strong>
    foo
</div>

animuson already answered, so He deserves the vote and if you need to close it for any reason you may go on but you should for animuson's answer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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