聖盃佈局和雙飛翼佈局用來解決兩邊固定寬度,中間自適應的三欄佈局。瀏覽器
這兩種佈局首先都要經過設置float:left
浮動,和margin-left
、margin-right
的負值,目的是讓三元素並排顯示,行成三欄佈局。bash
區別在中間盒子處理的方式。怎麼作才能不把中間盒子的內容覆蓋住,讓其徹底顯示:佈局
聖盃佈局 是經過父元素設置padding-left
和padding-right
爲左右兩邊的盒子留空間。而後左右兩盒子經過相對定位,改變left
和right
的值,移動後不遮擋中間div。學習
雙飛翼佈局 是直接在中間div
內部建立子div
,用於放置內容。而且設置子div
的margin-left
和margin-right
,爲左右兩個div
留出位置,左右兩個盒子不須要設置position:relative
和right,left
屬性。ui
首先給出頁面結構spa
//middle第一個是爲了實如今瀏覽器優先渲染。
<div class="parent">
<div class="middle all"></div>
<div class="left all"></div>
<div class="right all"></div>
</div>
複製代碼
接下來咱們先給三欄各自設置寬高,這裏咱們高度都用200px。由於中間欄寬度要自適應,因此咱們設置爲100%。.net
.all{
height: 200px;
}
.middle{
width: 100%;
background-color: yellow;
}
.left{
width:200px;
background-color: red;
}
.right{
width:100px;
background-color: dodgerblue;
}
複製代碼
float
屬性。
.all{
height: 500px;
float:left;
}
.middle{
width: 100%;
background-color: yellow;
}
.left{
width:200px;
background-color: red;
}
.right{
width:100px;
background-color: dodgerblue;
}
複製代碼
.all{
height: 200px;
float: left;
}
.middle{
width: 100%;
background-color: yellow;
}
.left{
margin-left: -100%;
width:200px;
background-color: red;
}
.right{
margin-right: -100px;//100px是自身的寬度
width:100px;
background-color: dodgerblue;
}
複製代碼
middle
中加入內容後,兩邊的內容會被兩側欄擋住。
此時就須要父元素經過設置padding
來給左右兩邊的盒子留下空間,這個空間的大小和兩邊的盒子大小同樣:3d
.parent{
height: 200px;
padding: 0 100px 0 200px;
}
.all{
height: 200px;
float: left;
}
.middle{
width: 100%;
background-color: yellow;
}
.left{
margin-left: -100%;
width:200px;
background-color: red;
}
.right{
margin-right: -100px;
width:100px;
background-color: dodgerblue;
}
複製代碼
parent
的
padding
將三個元素都擠到右面了,如今就須要爲左右盒子設置position:relative,經過
left
和
right
移動位置了:
.parent{
height: 200px;
padding: 0 100px 0 200px;
}
.all{
height: 200px;
float: left;
}
.middle{
width: 100%;
background-color: yellow;
}
.left{
position: relative;
margin-left: -100%;
left: -200px;
width:200px;
background-color: red;
}
.right{
position: relative;
margin-right: -100px;
right: 0px;
width:100px;
background-color: dodgerblue;
}
複製代碼
margin-left
、margin-right
的負值,使他們與中間的盒子同行,(左邊:-100%,右邊:-右邊盒子的寬度)left
和right
移動位置雙飛翼佈局比較簡單,我就總結一下:code
margin-left
的負值,使他們與中間的盒子同行,(左邊:-100%,右邊:-右邊盒子的寬度)div
內部建立子div
,用於放置內容。而且設置子div
的margin-left
和margin-right
,爲左右兩個div
留出位置<div class="parent ">
<div class="middle">
<div></div>
</div>
<div class="left all"></div>
<div class="right all"></div>
</div>
複製代碼
.parent{
height: 200px;
overflow: hidden;
}
.all{
height: 200px;
float: left;
}
.middle{
float: left;
width: 100%;
}
.middle > div{
margin: 0 100px 0 200px;//爲左右兩邊的盒子預留空間
height: 200px;
background-color: yellow;
}
.left{
margin-left: -100%;
width:200px;
background-color: red;
}
.right{
margin-left:-100px;
width:100px;
background-color: dodgerblue;
}
複製代碼
學習筆記,實例是自敲。cdn