1 2 3 4 5 大专栏 BFC布局class="line">6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> <style> *{ margin: 0; padding: 0; } .box { height: 100%; width: 100%; } .left { float: left; height: 200px; background-color: aquamarine; width: 300px; margin-right: 20px; } .right { height: 300px; background-color: blueviolet; overflow: hidden; } </style> </head> <body> <div class="box"> <div class="left"></div> <div class="right"></div> </div> </body> </html>
|