Here is the code I am working with:
// CSS
.foo strong {
float: right;
}
// HTML
<div class="foo">
foo
<strong>bar</strong>
</div>
I am trying to float the "strong" element to the right, but unfortunately Internet Explorer 7 does not recognize this action.
Incorrect
Correct