Reputation: 4974
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
Correct
Upvotes: 0
Views: 96
Reputation: 146191
<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.
Upvotes: 1