<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> \* { padding: 0; margin: 0; } .container { padding-left: 200px; padding-right: 200px; } .left { float: left; width: 200px; height: 400px; background: red; margin-left: -100%; position: relative; left: -200px; } .center { float: left; width: 100%; height: 400px; background: yellow; } .right { float: left; width: 200px; height: 400px; background: blue; margin-left: -200px; position: relative; right: -200px; } </style> </head> <body> <section class="container"> <div class="center"></div> <div class="left"></div> <div class="right"></div> </section> </body> </html>
步驟
先寫center
部分,width 100%
html
center
,left
,right
都是左浮動dom
父容器container
設置padding-left
和padding-right
佈局
設置margin-left
爲負值讓left
和right
部分回到與center
部分同一行ui
設置相對定位,讓left
和right
部分移動到兩邊spa
center部分的最小寬度不能小於left部分的寬度scala
其中一列內容高度拉長,其餘兩列的高度不會自動填充code
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> \*{ padding: 0; margin: 0; } .container { min-width: 600px; } .left { float: left; width: 200px; height: 400px; background: red; margin-left: -100%; } .center { float: left; width: 100%; height: 400px; background: yellow; } .center .inner { margin: 0 200px; } .right { float: left; width: 200px; height: 400px; background: blue; margin-left: -200px; } </style> </head> <body> <section class="container"> <div class="center"> <div class="inner">雙飛翼佈局</div> </div> <div class="left"></div> <div class="right"></div> </section> </body> </html>
先寫center
部分,width 100%
htm
center
,left
,right
都是左浮動圖片
center
部分增長一個內層div
,並設margin-left
,margin-right
it
設置margin-left
爲負值讓left
和right
部分回到與center
部分同一行
多加一層 dom
樹節點