幾種常見的CSS佈局

浪裡行舟發表於2018-11-08

本文概要

本文將介紹如下幾種常見的佈局:

幾種常見的CSS佈局

其中實現三欄佈局有多種方式,本文著重介紹聖盃佈局和雙飛翼佈局。另外幾種可以猛戳實現三欄佈局的幾種方法

一、單列布局

幾種常見的CSS佈局

常見的單列布局有兩種:

  • header,content和footer等寬的單列布局
  • header與footer等寬,content略窄的單列布局

1.如何實現

對於第一種,先通過對header,content,footer統一設定width:1000px;或者max-width:1000px(這兩者的區別是當螢幕小於1000px時,前者會出現滾動條,後者則不會,顯示出實際寬度);然後設定margin:auto實現居中即可得到。

<div class="header"></div>
<div class="content"></div>
<div class="footer"></div>
複製程式碼
.header{
    margin:0 auto; 
    max-width: 960px;
    height:100px;
    background-color: blue;
}
.content{
    margin: 0 auto;
    max-width: 960px;
    height: 400px;
    background-color: aquamarine;
}
.footer{
    margin: 0 auto;
    max-width: 960px;
    height: 100px;
    background-color: aqua;
}
複製程式碼

對於第二種,header、footer的內容寬度不設定,塊級元素充滿整個螢幕,但header、content和footer的內容區設定同一個width,並通過margin:auto實現居中。

<div class="header">
    <div class="nav"></div>
</div>
<div class="content"></div>
<div class="footer"></div>
複製程式碼
.header{
    margin:0 auto;
    max-width: 960px;
    height:100px;
    background-color: blue;
}
.nav{
    margin: 0 auto;
    max-width: 800px;
    background-color: darkgray;
    height: 50px;
}
.content{
    margin: 0 auto;
    max-width: 800px;
    height: 400px;
    background-color: aquamarine;
}
.footer{
    margin: 0 auto;
    max-width: 960px;
    height: 100px;
    background-color: aqua;
}
複製程式碼

二、兩列自適應佈局

兩列自適應佈局是指一列由內容撐開,另一列撐滿剩餘寬度的佈局方式

1.float+overflow:hidden

如果是普通的兩列布局,浮動+普通元素的margin便可以實現,但如果是自適應的兩列布局,利用float+overflow:hidden便可以實現,這種辦法主要通過overflow觸發BFC,而BFC不會重疊浮動元素。由於設定overflow:hidden並不會觸發IE6-瀏覽器的haslayout屬性,所以需要設定zoom:1來相容IE6-瀏覽器。具體程式碼如下:

<div class="parent" style="background-color: lightgrey;">
    <div class="left" style="background-color: lightblue;">
        <p>left</p>
    </div>
    <div class="right"  style="background-color: lightgreen;">
        <p>right</p>
        <p>right</p>
    </div>        
</div>
複製程式碼
.parent {
  overflow: hidden;
  zoom: 1;
}
.left {
  float: left;
  margin-right: 20px;
}
.right {
  overflow: hidden;
  zoom: 1;
}
複製程式碼

注意點:如果側邊欄在右邊時,注意渲染順序。即在HTML中,先寫側邊欄後寫主內容

2.Flex佈局

Flex佈局,也叫彈性盒子佈局,區區簡單幾行程式碼就可以實現各種頁面的的佈局。

//html部分同上
.parent {
  display:flex;
}  
.right {
  margin-left:20px; 
  flex:1;
}
複製程式碼

3.grid佈局

Grid佈局,是一個基於網格的二維佈局系統,目的是用來優化使用者介面設計。

//html部分同上
.parent {
  display:grid;
  grid-template-columns:auto 1fr;
  grid-gap:20px
} 
複製程式碼

三、三欄佈局

特徵:中間列自適應寬度,旁邊兩側固定寬度

1.聖盃佈局

① 特點

比較特殊的三欄佈局,同樣也是兩邊固定寬度,中間自適應,唯一區別是dom結構必須是先寫中間列部分,這樣實現中間列可以優先載入

  .container {
    padding-left: 220px;//為左右欄騰出空間
    padding-right: 220px;
  }
  .left {
    float: left;
    width: 200px;
    height: 400px;
    background: red;
    margin-left: -100%;
    position: relative;
    left: -220px;
  }
  .center {
    float: left;
    width: 100%;
    height: 500px;
    background: yellow;
  }
  .right {
    float: left;
    width: 200px;
    height: 400px;
    background: blue;
    margin-left: -200px;
    position: relative;
    right: -220px;
  }
複製程式碼
  <article class="container">
    <div class="center">
      <h2>聖盃佈局</h2>
    </div>
    <div class="left"></div>
    <div class="right"></div>
  </article>
複製程式碼

② 實現步驟

  • 三個部分都設定為左浮動,否則左右兩邊內容上不去,就不可能與中間列同一行。然後設定center的寬度為100%(實現中間列內容自適應),此時,left和right部分會跳到下一行

幾種常見的CSS佈局

  • 通過設定margin-left為負值讓left和right部分回到與center部分同一行

幾種常見的CSS佈局

  • 通過設定父容器的padding-left和padding-right,讓左右兩邊留出間隙。

幾種常見的CSS佈局

  • 通過設定相對定位,讓left和right部分移動到兩邊。

幾種常見的CSS佈局

③ 缺點

  • center部分的最小寬度不能小於left部分的寬度,否則會left部分掉到下一行
  • 如果其中一列內容高度拉長(如下圖),其他兩列的背景並不會自動填充。(藉助等高佈局正padding+負margin可解決,下文會介紹)

幾種常見的CSS佈局

2.雙飛翼佈局

① 特點

同樣也是三欄佈局,在聖盃佈局基礎上進一步優化,解決了聖盃佈局錯亂問題,實現了內容與佈局的分離。而且任何一欄都可以是最高欄,不會出問題

    .container {
        min-width: 600px;//確保中間內容可以顯示出來,兩倍left寬+right寬
    }
    .left {
        float: left;
        width: 200px;
        height: 400px;
        background: red;
        margin-left: -100%;
    }
    .center {
        float: left;
        width: 100%;
        height: 500px;
        background: yellow;
    }
    .center .inner {
        margin: 0 200px; //新增部分
    }
    .right {
        float: left;
        width: 200px;
        height: 400px;
        background: blue;
        margin-left: -200px;
    }
複製程式碼
    <article class="container">
        <div class="center">
            <div class="inner">雙飛翼佈局</div>
        </div>
        <div class="left"></div>
        <div class="right"></div>
    </article>
複製程式碼

② 實現步驟(前兩步與聖盃佈局一樣)

  • 三個部分都設定為左浮動,然後設定center的寬度為100%,此時,left和right部分會跳到下一行;
  • 通過設定margin-left為負值讓left和right部分回到與center部分同一行;
  • center部分增加一個內層div,並設margin: 0 200px;

③ 缺點

多加一層 dom 樹節點,增加渲染樹生成的計算量

3.兩種佈局實現方式對比:

  • 兩種佈局方式都是把主列放在文件流最前面,使主列優先載入。
  • 兩種佈局方式在實現上也有相同之處,都是讓三列浮動,然後通過負外邊距形成三列布局。
  • 兩種佈局方式的不同之處在於如何處理中間主列的位置: 聖盃佈局是利用父容器的左、右內邊距+兩個從列相對定位雙飛翼佈局是把主列巢狀在一個新的父級塊中利用主列的左、右外邊距進行佈局調整

四、等高佈局

等高佈局是指子元素在父元素中高度相等的佈局方式。接下來我們介紹常見幾種實現方式:

1.利用正padding+負margin

我們通過等佈局便可解決聖盃佈局的第二點缺點,因為背景是在 padding 區域顯示的,設定一個大數值的 padding-bottom,再設定相同數值的負的 margin-bottom,並在所有列外面加上一個容器,並設定 overflow:hidden 把溢位背景切掉。這種可能實現多列等高佈局,並且也能實現列與列之間分隔線效果,結構簡單,相容所有瀏覽器。新增程式碼如下:

      .center,
      .left,
      .right {
        padding-bottom: 10000px;
        margin-bottom: -10000px;
      }
      .container {
        padding-left: 220px;
        padding-right: 220px;
        overflow: hidden;//把溢位背景切掉
      }
複製程式碼

image

2.利用背景圖片

這種方法是我們實現等高列最早使用的一種方法,就是使用背景圖片,在列的父元素上使用這個背景圖進行Y軸的鋪放,從而實現一種等高列的假象。實現方法簡單,相容性強,不需要太多的css樣式就可以輕鬆實現,但此方法不適合流體佈局等高列的佈局。

在製作樣式之前需要一張類似下面的背景圖:

幾種常見的CSS佈局

<div class=”container clearfix”>
    <div class=”left”></div>
    <div  class=”content”></div>
    <div class=”right”></div>
</div>
複製程式碼
.container {
  background: url("column.png") repeat-y;
  width: 960px;
  margin: 0 auto;
}
.left {
  float: left;
  width: 220px;
}
.content {
  float: left;
  width: 480px;
}
.right {
  float: left;
  width: 220px;
}
複製程式碼

3.模仿表格佈局

這是一種非常簡單,易於實現的方法。不過相容性不好,在ie6-7無法正常執行。

   <div class="container table">
      <div class="containerInner tableRow">
        <div class="column tableCell cell1">
          <div class="left aside">
            ....
          </div>
        </div>
        <div class="column tableCell cell2">
          <div class="content section">
            ...
          </div>
        </div>
        <div class="column tableCell cell3">
          <div class="right aside">
            ...
          </div>
        </div>
      </div>
    </div>
複製程式碼
.table {
  width: auto;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: table;
}
.tableRow {
  display: table-row;
}
.tableCell {
  display: table-cell;
  width: 33%;
}
.cell1 {
  background: #f00;
  height: 800px;
}
.cell2 {
  background: #0f0;
}
.cell3 {
  background: #00f;
}
複製程式碼

4.使用邊框和定位

這種方法是使用邊框和絕對定位來實現一個假的高度相等列的效果。結構簡單,相容各瀏覽器,容易掌握。假設你需要實現一個兩列等高佈局,側欄高度要和主內容高度相等。

#wrapper {
  width: 960px;
  margin: 0 auto;
}
#mainContent {
  border-right: 220px solid #dfdfdf;
  position: absolute;
  width: 740px;
  height: 800px;  
  background: green;
}
#sidebar {
  background: #dfdfdf;
  margin-left: 740px;
  position: absolute;
  height: 800px;
  width: 220px;
}
複製程式碼
<div id="wrapper">
    <div id="mainContent">...</div>
    <div id="sidebar">...</div>
</div>
複製程式碼

五、粘連佈局

1.特點

  • 有一塊內容<main>,當<main>的高康足夠長的時候,緊跟在<main>後面的元素<footer>會跟在<main>元素的後面。
  • <main>元素比較短的時候(比如小於螢幕的高度),我們期望這個<footer>元素能夠“粘連”在螢幕的底部

幾種常見的CSS佈局

具體程式碼如下:

    <div id="wrap">
      <div class="main">
        main <br />
        main <br />
        main <br />
      </div>
    </div>
    <div id="footer">footer</div>
複製程式碼
   * {
        margin: 0;
        padding: 0;
      }
      html,
      body {
        height: 100%;//高度一層層繼承下來
      }
      #wrap {
        min-height: 100%;
        background: pink;
        text-align: center;
        overflow: hidden;
      }
      #wrap .main {
        padding-bottom: 50px;
      }
      #footer {
        height: 50px;
        line-height: 50px;
        background: deeppink;
        text-align: center;
        margin-top: -50px;
      }
複製程式碼

2.實現步驟

(1)footer必須是一個獨立的結構,與wrap沒有任何巢狀關係

(2)wrap區域的高度通過設定min-height,變為視口高度

(3)footer要使用margin為負來確定自己的位置

(4)在main區域需要設定 padding-bottom。這也是為了防止負 margin 導致 footer 覆蓋任何實際內容。

於2019.1.2重新修改,如果覺得文章對你有些許幫助,歡迎在我的GitHub部落格點贊和關注,感激不盡!

參考文章

雙飛翼佈局介紹-始於淘寶UED

CSS三欄佈局的四種方法

CSS 兩列布局---左側固定,右側自適應

兩列自適應佈局的四種思路

css常見佈局之九:三欄佈局的常見實現

【佈局】聊聊為什麼淘寶要提出「雙飛翼」佈局

CSS的單列布局與二&三列布局

相關文章