日期:2014-05-17 浏览次数:21155 次
<style type="text/css">
    div {
       width: 100px;
       height: 100px;
       background-color: green;
       color: white;
       margin: 10px 0;
    }
</style>
<div style="width:180px; height:auto; overflow:hidden; background:white; border:1px solid gold;">
    <div style="float:left;">O</div>
    <div style="float:left; background-color: blue;">A</div>
    <div style="float:right; width:50px; background-color: red;">B</div>
</div>
<style type="text/css">
    div {
       width: 100px;
       height: 100px;
       background-color: green;
       color: white;
       margin: 10px 0;
    }
</style>
<div style="width:180px; height:auto; overflow:hidden; background:white; border:1px solid gold;">
    <div style="float:left;">O</div>
           <div style="float:right; width:50px; background-color: red;">B</div>
    <div style="float:left; background-color: blue;">A</div>
</div>
<div style="width:400px; height:50px;border:1px solid red;">
    <div style="background-color:green; float:left; width:250px;">left</div>
    <span style="border:1px solid yellow;">blublublublublublublublublublublublu</span>
    <div style="background-color: green;float:right;">right</div>
</div>