不知道你的3个div是不是嵌套的。 我根据嵌套自己写了一下,效果如上图,不知道能不能解决你的问题~ <div class="div1">div1 <div class="div2">div2 <div class="div3">div3</div> </div> </div> .div1{ width:300px; height:200px; background:orange; /* overflow:hidden; */ } .div2{ width:240px; height:140px; margin:10px auto; background:yellow; } .div3{ width:100px; height:100px; background:pink; float:right; margin-top:20px; }
不知道你的3个div是不是嵌套的。
我根据嵌套自己写了一下,效果如上图,不知道能不能解决你的问题~