html固定且居中布局含footer,如何用一行 CSS 实现 10 种现代布局?
Mom, I Can’t Learn Anymore(《媽媽,我學不動了!》) 是一系列關于計算機領域程序最新時事的文章(偏向于前端領域),在該系列會從不同的角度討論領域內的實踐和進展。
前言
周日在家看 web.dev 的 2020 三天 live,發現不少有意思的東西,其中有一項是關于 CSS 的,主播是 Una Kravets(chrome team 成員)。雖然我已經好幾個月沒有深入研究 CSS 的東西了,不過以前的底子還在(有興趣的可以看我一年前發布的關于 CSS 的東西,雖然由于太過底層沒啥人愿意看, sad)。
注意:下面大部分代碼已經由各大主流最新瀏覽器實現,切記不要使用在 production 當中
注意:如果是公眾號的讀者,由于外鏈原因,可以點擊閱讀原文,github page 里面有更加詳細的 demo, 本文所有代碼和演示屬于 Una
正文
01. 超級居中
在沒有 flex 和 grid 之前,垂直居中一直不能很優雅的實現。而現在,我們可以結合?grid?和?place-items?優雅的同時實現水平居中和垂直居中。
:)
.ex1 .parent {
display: grid;
place-items: center;
}
02. 可解構的自適應布局(The Deconstructed Pancake)
flex: 0 1
這種布局經常出現在電商網站:
在 viewport 足夠的時候,三個 box 固定寬度橫放
在 viewport 不夠的時候(比如在 mobile 上面),寬度仍然固定,但是自動解構(原諒我的中文水平),不在同一水平面上
123.ex2 .parent {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.ex2 .box {
flex: 1 1 150px; /* flex-grow: 1 ,表示自動延展到最大寬度 */
flex: 0 1 150px; /* No stretching: */
margin: 5px;
}
當我們設置?flex: 1 1 150px;?時候:
03. 經典的 sidebar
grid-template-columns: minmax(, ) ...
同樣使用?grid?layout,可以結合?minmax()?實現彈性的 sidebar(這在你要適應大屏幕的時候很有用)。minmax(, )?就是字面意思。結合??單位,非常優雅,避免了數學計算寬度等不靈活的手段(比如我們設置 gap 的時候)。
Min: 150px / Max: 25%
This element takes the second grid position (1fr), meaning
it takes up the rest of the remaining space.
.ex3 .parent {
display: grid;
grid-template-columns: minmax(150px, 25%) 1fr;
}
04. 固定的 header 和 footer
grid-template-rows: auto 1fr auto
固定高度的 header 和 footer,占據剩余空間的 body 是經常使用的布局,我們可以利用?grid?和?fr?單位完美實現。
Header
Main
Footer Content
.ex4 .parent {
display: grid;
grid-template-rows: auto 1fr auto;
}
05. 經典的圣杯布局(classical holy Grail layout)
grid-template: auto 1fr auto / auto 1fr auto
我們可以輕松的使用 Grid 布局來實現圣杯布局,并且是彈性的。
Header
Left SidebarMain Content
Right SidebarFooter
.ex5 .parent {
display: grid;
grid-template: auto 1fr auto / auto 1fr auto;
}
.ex5 header {
padding: 2rem;
grid-column: 1 / 4;
}
.ex5 .left-side {
grid-column: 1 / 2;
}
.ex5 main {
grid-column: 2 / 3;
}
.ex5 .right-side {
grid-column: 3 / 4;
}
.ex5 footer {
grid-column: 1 / 4;
}
06. 有意思的疊塊
使用?grid-template-columns?和?grid-column?可以實現如下圖所示的布局。進一步說明了?repeat?和?fr?的便捷性。
07. RAM 技巧
grid-template-columns: repeat(auto-fit, minmax(, 1fr))
Una Kravets 稱之為 repeat, auto, minmax 技巧。這在彈性布局?圖片/box?這類非常有用(一行可以排放的卡片數量自動適應)。
.ex7 .parent {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
1234其效果是如果能夠滿足多個 box 的最小寬度(比如上面的?150px),自動彈性適應放在多行。 舉個例子:
當前寬度是?160px(不考慮 gap),那么上面四個?box?的寬度會自適應為?160px,并且分為 4 行
當前寬度是?310px?(不考慮 gap),上面四個?box?分成兩行,兩個?box?平分寬度
當滿足一行放下 3 個box 時,第三個 box 自動到第一行
當滿足一行放下 4 個 box 時,第四個 box 自動到第一行
如果我們將?auto-fit?改為?auto-fill:
08. 卡片彈性自適應
justify-content: space-between,結合?grid?和?flex?實現完美的卡片布局。
Title - Card 1
Medium length description with a few more words here.
Title - Card 2
Long Description. Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Title - Card 3
Short Description.
.ex8 .parent {
height: auto;
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(3, 1fr);
}
.ex8 .visual {
height: 100px;
width: 100%;
}
.ex8 .card {
display: flex;
flex-direction: column;
padding: 1rem;
justify-content: space-between;
}
.ex8 h3 {
margin: 0
}
無論是寬度或高度的收縮還是延展,都可以完美的展現 card 的布局。
09. 使用 clamp 實現 fluid typography
clamp(, , )
使用最新的?clamp()?方法可以一行實現 fluid typography。提高 UX,非常適合包含閱讀內容的 card,因為我們不希望一行字太短或太長。
Title Here
Descriptive Text. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sed est error repellat veritatis.
.ex9 .parent {
display: grid;
place-items: center;
}
.ex9 .card {
width: clamp(23ch, 50%, 46ch);
display: flex;
flex-direction: column;
padding: 1rem;
}
.ex9 .visual {
height: 125px;
width: 100%;
}
10. 完美實現比例
aspect-ratio: /
在展現 CMS 或其他設計內容時,我們會期望圖片、video、卡片能夠按照固定的比例進行布局。而最新的?aspect-ratio?就能優雅的實現該功能(使用 chrome 84+)
Video Title
Descriptive Text. This demo works in Chromium 84+.
.ex10 .parent {
display: grid;
place-items: center;
}
.ex10 .visual {
aspect-ratio: 16 / 9;
}
.ex10 .card {
width: 50%;
display: flex;
flex-direction: column;
padding: 1rem;
}
遵循 MIT 協議,轉載請聯系作者。更多文章請關注公眾號(點擊下方鏈接)或者 Star GitHub repo.
總結
以上是生活随笔為你收集整理的html固定且居中布局含footer,如何用一行 CSS 实现 10 种现代布局?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: asp.net html5 异步,asp
- 下一篇: 老旧计算机升级云桌面,哇哦!PC机房轻松