正确的方式:
<div style="float:right;">right</div>
<div style="float:left;">left</div>
<div style="float:none;">middle</div>
right
left
middle

错误的方式:
<div style="float:left;">left</div>
<div style="float:none;">middle</div>
<div style="float:right;">right</div>
left
middle
right