float为浮动选项
right为右边
left为左边
<div id="left"> 左浮动 </div> <div id="right"> 右浮动 </div> <style> #left{ float:left; } #right{ float:right } </style>