CSS中常見的佈局有:1、水平居中,內聯元素水平居中、塊級元素水平居中和多塊級元素水平居中;2、垂直居中,單行內聯元素垂直居中和多行元素垂直居中;3、利用flex佈局;4、單列佈局;5、兩列佈局。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
1、水平居中:
內聯元素水平居中
利用text-align: center 可以實現在區塊級元素內部的內聯元素水平居中。此方法對內聯元素(inline), 內聯塊(inline-block), 內聯表(inline-table), inline-flex元素水平居中都有效。
核心程式碼:
.center-text { text-align: center; }
區塊級元素水平居中
透過把固定寬度區塊級元素的margin-left和margin-right設為auto,就可以讓區塊級元素水平居中。
核心程式碼:
.center-block { margin: 0 auto; }
多重區塊級元素水平居中
使用inline-block
如果一行中有兩個或兩個以上的區塊級元素,透過設定區塊級元素的顯示類型為inline-block和父容器的text-align屬性從而使多塊級元素水平居中。
核心程式碼:
.container { text-align: center; } .inline-block { display: inline-block; }
2、垂直居中
#單行內聯(inline-)元素垂直居中
透過設置內聯元素的高度(height)和行高(line-height)相等,從而使元素垂直居中。
核心程式碼:
#v-box { height: 120px; line-height: 120px; }
多行元素垂直居中
利用表格佈局(table)
利用表格佈局的vertical-align: middle可以實現子元素的垂直居中。
核心程式碼:
.center-table { display: table; } .v-cell { display: table-cell; vertical-align: middle; }
3、利用flex佈局(flex)
利用flex佈局實現垂直居中,其中flex-direction: column定義主軸方向為縱向。因為flex佈局是CSS3中定義,在較舊的瀏覽器有相容性問題。
核心程式碼:
.center-flex { display: flex; flex-direction: column; justify-content: center; }
4、單列佈局
#主要有兩種:
- header, content, footer寬度同,有一個max-width
- header和footer佔滿瀏覽器100%寬度,content有一個max-width
第一種
<header style="background-color: red; width: 600px; margin: 0 auto;">头部</header> <main style="background-color: green; width: 600px; margin: 0 auto;">内容</main> <footer style="background-color: yellow; width: 600px; margin: 0 auto;">尾部</footer>
第二種:
<header style="background-color: red;">头部</header> <main style="background-color: green; width: 600px; margin: 0 auto;">内容</main> <footer style="background-color: yellow;">尾部</footer>
5、兩列佈局
float margin
用float將邊欄與主要內容拉到一行,然後設定主要內容的margin 。
<main style="background-color: red;"> <aside style="background-color: yellow; float: left; width: 50px;">边栏</aside> <section style="background-color: green; margin-left: 50px;">主要内容</section> </main>
推薦學習:css影片教學
#以上是CSS中常見的佈局有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!