Suppose there is such HTML tags:
<span>
<span id='s1'>Text 1</span>
<span id='s2'>Text 2</span>
</span>
And the css style is:
#s1 {
float: left;
}
#s2 {
float: right;
}
What is the standard behavior of the display?
In some browser, I see
Text 1 Text 2
In some version of IE, I see
Text 1
Text 2
It seems the float:right span is pushed down to next line.