<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>absolute的包裹性</title> <style> .father{width:100%;background:#000;position:absolute;margin-top:50px;} .sonl{float:left;font-size:12px;color:#f00;} .sonr{float:right;font-size:12px;color:#f00;} </style> </head> <body> <div class="father"> <div class="sonl"> 我要左浮动 </div> <div class="sonr"> 我要右浮动 </div> </div> </body> </html>
代码如上但是父级div包裹内部两个float出现小问题,不知道怎么解决。
FSYu