CSS
「布局排版」指将图形、文本、图像、媒体等可视化信息元素在页面布局上调整位置尺寸等属性使页面布局变得条理化的过程。大部分同学认为布局排版就是几个合理的CSS属性随便拼凑在一起,但多数情况即使实现也会存在瑕疵,此时就可能使用JS介入。
布局排版的特征可知它属于表现范畴,因此大部分布局排版都能使用纯CSS完成,无需JS介入。
这里秉承「能使用CSS实现的效果都优先使用CSS」的原则,巧妙运用各种纯CSS开发技巧完成一些常见或特殊的布局排版

属性

总结出布局排版一些必备属性,这些属性能快速搭建整体效果,再通过一些常用选择器加以修饰达到完美效果。看似简单,但使用起来不一定完全驾驭。
必备属性都是一些几何属性,主要用于声明位置尺寸

  • 「浮动布局」float
  • 「定位布局」position/left/right/top/bottom/z-index
  • 「弹性布局」display:flex/inline-flexflex系列属性
  • 「盒子模型」box-sizing/margin/padding/border/width/height

选择器因CSS模块众多而派生出的数量也众多,若无特别方式记熟这些选择器对应的功能,也很难将其发挥到最大作用。
根据选择器的功能划分出八大类,每个类别的选择器都能在一个应用场景里互相组合,记熟这些类别的选择器,相信就能将选择器发挥到最大作用,也能游刃有余将其应用到一些常见或特殊的布局排版里。
布局排版可能只应用到某些选择器,但也不妨碍可以通过以下归类方式记忆。选择器作为CSS的重要组成部分,比起属性组合会有更多的玩法。

基础选择器

选择器 别名 说明 版本 常用
tag 标签选择器 指定类型的标签 1
#id ID选择器 指定身份的标签 1
.class 类选择器 指定类名的标签 1
* 通配选择器 所有类型的标签 2

层次选择器

选择器 别名 说明 版本 常用
elemP elemC 后代选择器 元素的后代元素 1
elemP>elemC 子代选择器 元素的子代元素 2
elem1+elem2 相邻同胞选择器 元素相邻的同胞元素 2
elem1~elem2 通用同胞选择器 元素后面的同胞元素 3

集合选择器

选择器 别名 说明 版本 常用
elem1,elem2 并集选择器 多个指定的元素 1
elem.class 交集选择器 指定类名的元素 1

条件选择器

选择器 说明 版本 常用
:lang 指定标记语言的元素 2
:dir() 指定编写方向的元素 4
:has 包含指定元素的元素 4
:is 指定条件的元素 4
:not 非指定条件的元素 4
:where 指定条件的元素 4
:scope 指定元素作为参考点 4
:any-link 所有包含href的链接元素 4
:local-link 所有包含href且属于绝对地址的链接元素 4

状态选择器

选择器 说明 版本 常用
:active 鼠标激活的元素 1
:hover 鼠标悬浮的元素 1
:link 未访问的链接元素 1
:visited 已访问的链接元素 1
:target 当前锚点的元素 3
:focus 输入聚焦的表单元素 2
:required 输入必填的表单元素 3
:valid 输入合法的表单元素 3
:invalid 输入非法的表单元素 3
:in-range 输入范围以内的表单元素 3
:out-of-range 输入范围以外的表单元素 3
:checked 选项选中的表单元素 3
:optional 选项可选的表单元素 3
:enabled 事件启用的表单元素 3
:disabled 事件禁用的表单元素 3
:read-only 只读的表单元素 3
:read-write 可读可写的表单元素 3
:target-within 内部锚点元素处于激活状态的元素 4
:focus-within 内部表单元素处于聚焦状态的元素 4
:focus-visible 输入聚焦的表单元素 4
:blank 输入为空的表单元素 4
:user-invalid 输入合法的表单元素 4
:indeterminate 选项未定的表单元素 4
:placeholder-shown 占位显示的表单元素 4
:current() 浏览中的元素 4
:past() 已浏览的元素 4
:future() 未浏览的元素 4
:playing 开始播放的媒体元素 4
:paused 暂停播放的媒体元素 4

结构选择器

选择器 说明 版本 常用
:root 文档的根元素 3
:empty 无子元素的元素 3
:nth-child(n) 元素中指定顺序索引的元素 3
:nth-last-child(n) 元素中指定逆序索引的元素 3
:first-child 元素中为首的元素 2
:last-child 元素中为尾的元素 3
:only-child 父元素仅有该元素的元素 3
:nth-of-type(n) 标签中指定顺序索引的标签 3
:nth-last-of-type(n) 标签中指定逆序索引的标签 3
:first-of-type 标签中为首的标签 3
:last-of-type 标签中为尾标签 3
:only-of-type 父元素仅有该标签的标签 3

属性选择器

选择器 说明 版本 常用
[attr] 指定属性的元素 2
[attr=val] 属性等于指定值的元素 2
[attr*=val] 属性包含指定值的元素 3
[attr^=val] 属性以指定值开头的元素 3
[attr$=val] 属性以指定值结尾的元素 3
[attr~=val] 属性包含指定值(完整单词)的元素(不推荐使用) 2
[attr\|=val] 属性以指定值(完整单词)开头的元素(不推荐使用) 2

伪元素

选择器 说明 版本 常用
::before 在元素前插入的内容 2
::after 在元素后插入的内容 2
::first-letter 元素的首字母 1
::first-line 元素的首行 1
::selection 鼠标选中的元素 3
::backdrop 全屏模式的元素 4
::placeholder 表单元素的占位 4

技巧

为了方便浏览器自动计算某些样式,需全局设置**box-sizing:border-box**,先引入reset.css。

主体布局

「主体布局」指在大部分情况下通用且具备统一特征的占位布局。掌握主体布局是一个前端必不可少的技能,养成看设计图就能大概规划出整体布局的前提是必须熟悉这些主体布局的特点与构造。

全屏布局

经典的「全屏布局」顶部底部主体三部分组成,其特点为三部分左右满屏拉伸顶部底部高度固定主体高度自适应。该布局很常见,也是大部分Web应用主体的主流布局。通常使用**<header>****<footer>****<main>**三个标签语义化排版,**<main>**内还可插入**<aside>**侧栏或其他语义化标签。
2021-12-31-14-54-53-090634.png

  1. <div class="fullscreen-layout">
  2. <header></header>
  3. <main></main>
  4. <footer></footer>
  5. </div>

position + left/right/top/bottom

三部分统一声明**left:0****right:0**将其左右满屏拉伸;顶部和底部分别声明**top:0****bottom:0**将其吸顶和吸底,并声明俩高度为固定值;将主体的**top****bottom**分别声明为顶部高度和底部高度。通过绝对定位的方式将三部分固定在特定位置,使其互不影响。

  1. .fullscreen-layout {
  2. position: relative;
  3. width: 400px;
  4. height: 400px;
  5. header,
  6. footer,
  7. main {
  8. position: absolute;
  9. left: 0;
  10. right: 0;
  11. }
  12. header {
  13. top: 0;
  14. height: 50px;
  15. background-color: #f66;
  16. }
  17. footer {
  18. bottom: 0;
  19. height: 50px;
  20. background-color: #66f;
  21. }
  22. main {
  23. top: 50px;
  24. bottom: 50px;
  25. background-color: #3c9;
  26. }
  27. }

flex

使用flex实现会更简洁。**display:flex**默认会令子节点横向排列,需声明**flex-direction:column**改变子节点排列方向为纵向排列;顶部和底部高度固定,所以主体需声明**flex:1**让高度自适应。

  1. .fullscreen-layout {
  2. display: flex;
  3. flex-direction: column;
  4. width: 400px;
  5. height: 400px;
  6. header {
  7. height: 50px;
  8. background-color: #f66;
  9. }
  10. footer {
  11. height: 50px;
  12. background-color: #66f;
  13. }
  14. main {
  15. flex: 1;
  16. background-color: #3c9;
  17. }
  18. }

**<main>**需表现成可滚动状态,千万不要声明**overflow:auto**让容器自适应滚动,这样做有可能因为其他格式化上下文的影响而导致自适应滚动失效或产生其他未知效果。需在**<main>**内插入一个**<div>**并声明如下。

  1. div {
  2. overflow: hidden;
  3. height: 100%;
  4. }

两列布局

经典的「两列布局」左右两列组成,其特点为一列宽度固定另一列宽度自适应两列高度固定且相等。以下以左列宽度固定和右列宽度自适应为例,反之同理。
2021-12-31-14-54-53-199895.png

  1. <div class="two-column-layout">
  2. <div class="left"></div>
  3. <div class="right"></div>
  4. </div>

float + margin-left/right

左列声明**float:left**和固定宽度,由于**float**使节点脱流,右列需声明**margin-left**为左列宽度,以保证两列不会重叠。

  1. .two-column-layout {
  2. width: 400px;
  3. height: 400px;
  4. .left {
  5. float: left;
  6. width: 100px;
  7. height: 100%;
  8. background-color: #f66;
  9. }
  10. .right {
  11. margin-left: 100px;
  12. height: 100%;
  13. background-color: #66f;
  14. }
  15. }

overflow + float

左列声明同上,右列声明**overflow:hidden**使其形成BFC区域与外界隔离。

  1. .two-column-layout {
  2. width: 400px;
  3. height: 400px;
  4. .left {
  5. float: left;
  6. width: 100px;
  7. height: 100%;
  8. background-color: #f66;
  9. }
  10. .right {
  11. overflow: hidden;
  12. height: 100%;
  13. background-color: #66f;
  14. }
  15. }

flex

使用**flex**实现会更简洁。左列声明固定宽度,右列声明**flex:1**自适应宽度。

  1. .two-column-layout {
  2. display: flex;
  3. width: 400px;
  4. height: 400px;
  5. .left {
  6. width: 100px;
  7. background-color: #f66;
  8. }
  9. .right {
  10. flex: 1;
  11. background-color: #66f;
  12. }
  13. }

三列布局

经典的「三列布局」左中右三列组成,其特点为连续两列宽度固定剩余一列宽度自适应三列高度固定且相等。以下以左中列宽度固定和右列宽度自适应为例,反之同理。整体的实现原理与上述两列布局一致。
2021-12-31-14-54-53-387665.png

  1. <div class="three-column-layout">
  2. <div class="left"></div>
  3. <div class="center"></div>
  4. <div class="right"></div>
  5. </div>

为了让右列宽度自适应计算,就不使用float + margin-left的方式了,若使用margin-left还得结合左中列宽度计算。

overflow + float

  1. .three-column-layout {
  2. width: 400px;
  3. height: 400px;
  4. .left {
  5. float: left;
  6. width: 50px;
  7. height: 100%;
  8. background-color: #f66;
  9. }
  10. .center {
  11. float: left;
  12. width: 100px;
  13. height: 100%;
  14. background-color: #66f;
  15. }
  16. .right {
  17. overflow: hidden;
  18. height: 100%;
  19. background-color: #3c9;
  20. }
  21. }

flex

  1. .three-column-layout {
  2. display: flex;
  3. width: 400px;
  4. height: 400px;
  5. .left {
  6. width: 50px;
  7. background-color: #f66;
  8. }
  9. .center {
  10. width: 100px;
  11. background-color: #66f;
  12. }
  13. .right {
  14. flex: 1;
  15. background-color: #3c9;
  16. }
  17. }

圣杯布局/双飞翼布局

经典的「圣杯布局」「双飞翼布局」都是由左中右三列组成,其特点为左右两列宽度固定中间一列宽度自适应三列高度固定且相等。其实也是上述两列布局和三列布局的变体,整体的实现原理与上述N列布局一致,可能就是一些细节需注意。
圣杯布局双飞翼布局在大体相同下也存在一点不同,区别在于双飞翼布局中间列需插入一个子节点。在常规实现方式里也是在这个中间列里做文章,如何使中间列内容不被左右列遮挡

  • 相同
    • 中间列放首位且声明其宽高占满父节点
    • 被挤出的左右列使用**float****margin**负值将其拉回与中间列处在同一水平线上
  • 不同
    • 圣杯布局:父节点声明**padding**为左右列留出空位,将左右列固定在空位上
    • 双飞翼布局:中间列插入子节点并声明**margin**为左右列让出空位,将左右列固定在空位上

2021-12-31-14-54-53-561085.png

圣杯布局float + margin-left/right + padding-left/right

由于浮动节点在位置上不能高于前面或平级的非浮动节点,否则会导致浮动节点下沉。因此在编写HTML结构时,将中间列节点挪到右列节点后面。

  1. <div class="grail-layout-x">
  2. <div class="left"></div>
  3. <div class="right"></div>
  4. <div class="center"></div>
  5. </div>
  1. .grail-layout-x {
  2. padding: 0 100px;
  3. width: 400px;
  4. height: 400px;
  5. .left {
  6. float: left;
  7. margin-left: -100px;
  8. width: 100px;
  9. height: 100%;
  10. background-color: #f66;
  11. }
  12. .right {
  13. float: right;
  14. margin-right: -100px;
  15. width: 100px;
  16. height: 100%;
  17. background-color: #66f;
  18. }
  19. .center {
  20. height: 100%;
  21. background-color: #3c9;
  22. }
  23. }

双飞翼布局float + margin-left/right

HTML结构大体同上,只是在中间列里插入一个子节点**<div>**。根据两者区别,CSS声明会与上述圣杯布局有一点点出入,可观察对比找出不同地方。

  1. <div class="grail-layout-y">
  2. <div class="left"></div>
  3. <div class="right"></div>
  4. <div class="center">
  5. <div></div>
  6. </div>
  7. </div>
  1. .grail-layout-y {
  2. width: 400px;
  3. height: 400px;
  4. .left {
  5. float: left;
  6. width: 100px;
  7. height: 100%;
  8. background-color: #f66;
  9. }
  10. .right {
  11. float: right;
  12. width: 100px;
  13. height: 100%;
  14. background-color: #66f;
  15. }
  16. .center {
  17. margin: 0 100px;
  18. height: 100%;
  19. background-color: #3c9;
  20. }
  21. }

圣杯布局/双飞翼布局flex

使用flex实现圣杯布局/双飞翼布局可忽略上述分析,左右两列宽度固定,中间列宽度自适应。

  1. <div class="grail-layout">
  2. <div class="left"></div>
  3. <div class="center"></div>
  4. <div class="right"></div>
  5. </div>
  1. .grail-layout {
  2. display: flex;
  3. width: 400px;
  4. height: 400px;
  5. .left {
  6. width: 100px;
  7. background-color: #f66;
  8. }
  9. .center {
  10. flex: 1;
  11. background-color: #3c9;
  12. }
  13. .right {
  14. width: 100px;
  15. background-color: #66f;
  16. }
  17. }

均分布局

经典的「均分布局」多列组成,其特点为每列宽度相等每列高度固定且相等。总体来说也是最简单的经典布局,由于每列宽度相等,所以很易找到合适的方式处理。
2021-12-31-14-54-53-748539.png

  1. <div class="average-layout">
  2. <div class="one"></div>
  3. <div class="two"></div>
  4. <div class="three"></div>
  5. <div class="four"></div>
  6. </div>
  1. .one {
  2. background-color: #f66;
  3. }
  4. .two {
  5. background-color: #66f;
  6. }
  7. .three {
  8. background-color: #f90;
  9. }
  10. .four {
  11. background-color: #09f;
  12. }

float + width

每列宽度声明为相等的百分比,若有4列则声明**width:25%**。N列就用公式**100 / n**求出最终百分比宽度,记得保留2位小数,懒人还可用**width:calc(100% / n)**自动计算呢。

  1. .average-layout {
  2. width: 400px;
  3. height: 400px;
  4. div {
  5. float: left;
  6. width: 25%;
  7. height: 100%;
  8. }
  9. }

flex

使用flex实现会更简洁。节点声明**display:flex**后,生成的FFC容器里所有子节点的高度都相等,因为容器的**align-items**默认为**stretch**,所有子节点将占满整个容器的高度。每列声明**flex:1**自适应宽度。

  1. .average-layout {
  2. display: flex;
  3. width: 400px;
  4. height: 400px;
  5. div {
  6. flex: 1;
  7. }
  8. }

居中布局

「居中布局」父容器若干个子容器组成,子容器在父容器中横向排列或竖向排列且呈水平居中或垂直居中。居中布局是一个很经典的问题,相信大家都会经常遇到。
2021-12-31-14-54-53-889271.png
在此直接上一个目前最简单最高效的居中方式。**display:flex****margin:auto**的强行组合。

  1. <div class="center-layout">
  2. <div></div>
  3. </div>
  1. .center-layout {
  2. display: flex;
  3. width: 400px;
  4. height: 400px;
  5. background-color: #f66;
  6. div {
  7. margin: auto;
  8. width: 100px;
  9. height: 100px;
  10. background-color: #66f;
  11. }
  12. }

自适布局

「自适布局」指相对视窗任何尺寸都能占据特定百分比的占位布局。自适布局的容器都是根据视窗尺寸计算,即使父节点祖先节点的尺寸发生变化也不会影响自适布局的容器尺寸。
搭建自适布局就离不开「视窗比例单位」。在CSS3里增加了与viewport相关的四个长度单位,随着时间推移,目前大部分浏览器对这四个长度单位都有较好的兼容性,这也是未来最建议在伸缩方案里使用的长度单位。

  • 1vw表示1%视窗宽度
  • 1vh表示1%视窗高度
  • 1vmin表示1%视窗宽度和1%视窗高度里最小者
  • 1vmax表示1%视窗宽度和1%视窗高度里最大者

视窗宽高在JS里分别对应**window.innerWdith****window.innerHeight**。若不考虑低版本浏览器兼容性,完全可用一行CSS代码秒杀所有移动端的伸缩方案。

  1. /* 基于UI width=750px DPR=2的网页 */
  2. html {
  3. font-size: calc(100vw / 7.5);
  4. }

上述代码使用**calc()**实现font-size的动态计算。**calc()**自适布局里的核心存在,无它就不能愉快地实现自适布局所有动态计算了。
**calc()**用于动态计算单位,数值长度角度时间百分比都能作为参数。由于执行数学表达式后返回运算后的计算值,所以可减少大量人工计算甚至无需人工计算。
**calc()**饥不择食,所有计量单位都能作为参数参加整个动态计算。

  • 「数值」整数浮点数
  • 「长度」pxemremvwvh
  • 「角度」degturn
  • 「时间」sms
  • 「百分比」%

**calc()**虽然好用,但新手难免会遇到一些坑,谨记以下特点,相信就能玩转**calc()**了。

  • 四则运算:只能使用**+****-*********/**作为运算符号
  • 运算顺序:遵循加减乘除运算顺序,可用**()**提升运算等级
  • 符号连接:每个运算符号必须使用空格间隔起来
  • 混合计算:可混合不同计量单位动态计算

第三点尤为重要,若未能遵守,浏览器直接忽略该属性。
上述**font-size:calc(100vw / 7.5)**其实就是根据设计图与浏览器视窗的比例动态计算**<html>****font-size**:**100/750 = x/100vw**
在SPA里有遇过因为有滚动条或无滚动条而导致页面路由在跳转过程里发生向左或向右的抖动吗?这让强迫症患者很难受,此时可用**calc()**巧妙解决该问题。

  1. .elem {
  2. padding-right: calc(100vw - 100%);
  3. }

不直接声明padding-right为滚动条宽度是因为每个浏览器的默认滚动条宽度都可能不一致。100vw是视窗宽度,100%内容宽度,那么100vw - 100%就是滚动条宽度,声明padding-right用于保留滚动条出现的位置,这样滚动条出不出现都不会让页面抖动了。
有了**calc()**做保障就可迅速实现一些与视窗尺寸相关的布局了。例如实现一个视窗宽度都为50%的弹窗。
GIF 2021-12-31-星期五 20-17-58.gif

  1. <div class="modal">
  2. <div class="modal-wrapper"></div>
  3. </div>
  1. .modal {
  2. display: flex;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. bottom: 0;
  8. justify-content: center;
  9. align-items: center;
  10. background-color: rgba(0, 0, 0, .5);
  11. &-wrapper {
  12. width: 50vw;
  13. height: 200px;
  14. background-color: #f66;
  15. }
  16. }

当然使用**calc()**也不一定结合视窗比例单位计算。例如自适布局已知部分节点高度,不想手动计算最后节点高度但又想其填充布局剩余空间。
2021-12-31-14-54-54-493438.png

  1. <ul class="selfadaption-layout">
  2. <div class="box-1"></div>
  3. <div class="box-2"></div>
  4. <div class="box-3"></div>
  5. </ul>
  1. .selfadaption-layout {
  2. width: 200px;
  3. height: 567px;
  4. .box-1 {
  5. height: 123px;
  6. background-color: #f66;
  7. }
  8. .box-2 {
  9. height: 15%;
  10. background-color: #3c9;
  11. }
  12. .box-3 {
  13. height: calc(100% - 123px - 15%);
  14. background-color: #09f;
  15. }
  16. }

吸附布局

「吸附布局」指相对视窗任何滚动都能占据特定位置的占位布局。视窗滚动到特定位置,布局固定在该位置,后续不随视窗滚动而滚动。该布局产生的效果俗称吸附效果,是一种常见网页效果。譬如吸顶效果吸底效果都是该范畴,经常在跟随导航移动广告悬浮提示等应用场景里出现。
jQuery时代就有很多吸附效果插件,现在三大前端框架也有自身第三方的吸附效果组件。它们都有着共通的实现原理:监听scroll事件,判断scrollTop目标节点的位置范围,符合条件则将目标节点position声明为fixed使目标节点相对于视窗定位,让用户看上去就像钉在视窗指定位置上。
这里推荐一个很少见很少用的CSS属性**position:sticky**。简单的「两行核心CSS代码」就能完成「十多行核心JS代码」的功能,何乐而不为呢。
简单回顾position属性值,应该都熟悉。

取值 功能 版本
「inherit」 继承 2
「static」 标准流 2
「relative」 相对定位 2
「absolute」 绝对定位 2
「fixed」 固定定位 2
「sticky」 粘性定位 3

当值为sticky时将节点变成粘性定位「粘性定位」相对定位固定定位的结合体,节点在特定阈值跨越前为相对定位,跨越后为固定定位
GIF 2021-12-31-星期五 20-19-43.gif

  1. <div class="adsorption-position">
  2. <ul>
  3. <li>Top 1</li>
  4. <li>Top 2</li>
  5. <li>Normal</li>
  6. <li>Bottom 1</li>
  7. <li>Bottom 2</li>
  8. </ul>
  9. </div>
  1. .adsorption-position {
  2. overflow: auto;
  3. position: relative;
  4. width: 400px;
  5. height: 280px;
  6. outline: 1px solid #3c9;
  7. ul {
  8. padding: 200px 0;
  9. }
  10. li {
  11. position: sticky;
  12. height: 40px;
  13. line-height: 40px;
  14. text-align: center;
  15. color: #fff;
  16. &:nth-child(1) {
  17. top: 0;
  18. z-index: 9;
  19. background-color: #f66;
  20. }
  21. &:nth-child(2) {
  22. top: 40px;
  23. z-index: 9;
  24. background-color: #66f;
  25. }
  26. &:nth-child(3) {
  27. background-color: #f90;
  28. }
  29. &:nth-child(4) {
  30. bottom: 0;
  31. z-index: 9;
  32. background-color: #09f;
  33. }
  34. &:nth-child(5) {
  35. bottom: 40px;
  36. z-index: 9;
  37. background-color: #3c9;
  38. }
  39. }
  40. }

两行核心CSS代码分别是**position:sticky****top**/**bottom:npx**。上述5个节点都声明**position:sticky**,但由于**top**/**bottom**赋值有所不同就产生不同吸附效果。
细心的同学可能发现这些节点在某些滚动时刻处于相对定位,在特定滚动时刻处于固定定位

  • 第1个
  • top0px,滚动到容器顶部就固定
  • 第2个
  • top40px,滚动到距离容器顶部40px就固定
  • 第3个
  • :未声明top/bottom,就一直保持相对定位
  • 第4个
  • bottom40px,滚动到距离容器底部40px就固定
  • 第5个
  • bottom0px,滚动到容器底部就固定

当然,换成leftright也一样能实现横向的吸附效果
值得注意,粘性定位的参照物并不一定是position:fixed。当目标节点的任意祖先节点都未声明position:relative|absolute|fixed|sticky,才与position:fixed表现一致。当离目标节点最近的祖先节点声明position:relative|absolute|fixed|sticky目标节点就相对该祖先节点产生粘性定位。简单来说确认参照物的方式与position:absolute一致。
兼容性勉强还行,近2年发版的浏览器都能支持,SafariFirefox的兼容性还是挺赞的。有吸附效果需求的同学建议一试,要兼容IExplorer就算了。期待该属性有更好的发展,毕竟吸附布局真的是一种常见布局。
image.png

横向布局

「横向布局」指容器内节点以水平方向排列且溢出部分被隐藏的占位布局。竖向布局很常见,声明**overflow:hidden;width:xpx;height:ypx**就能实现,但横向布局却不能使用类似方式实现。
为了方便使用多种方式实现横向布局,以下将通用代码拆分出来。
GIF 2021-12-31-星期五 20-21-57.gif

  1. <div class="horizontal-layout">
  2. <ul>
  3. <li>Alibaba</li>
  4. <li>Tencent</li>
  5. <li>Baidu</li>
  6. <li>Jingdong</li>
  7. <li>Ant</li>
  8. <li>Netease</li>
  9. <li>Meituan</li>
  10. <li>ByteDance</li>
  11. <li>360</li>
  12. <li>Sina</li>
  13. </ul>
  14. </div>
  1. .horizontal-layout {
  2. overflow: hidden;
  3. width: 300px;
  4. height: 100px;
  5. ul {
  6. overflow-x: auto;
  7. cursor: pointer;
  8. &::-webkit-scrollbar {
  9. height: 10px;
  10. }
  11. &::-webkit-scrollbar-track {
  12. background-color: #f0f0f0;
  13. }
  14. &::-webkit-scrollbar-thumb {
  15. border-radius: 5px;
  16. background-color: #f66;
  17. }
  18. }
  19. li {
  20. overflow: hidden;
  21. height: 90px;
  22. background-color: #66f;
  23. line-height: 90px;
  24. text-align: center;
  25. font-size: 16px;
  26. color: #fff;
  27. &:not(:first-child) {
  28. margin-left: 10px;
  29. }
  30. }
  31. }

有些同学可能会使用行内元素实现横向排版,但必须声明**overflow-y:hidden**使容器在Y轴方向隐藏溢出部分。由于行内元素在当前行排版产生溢出会自动将其余节点排版到下一行,因此还需声明**white-space:nowrap**使所有行内元素在一行内排版完毕。若产生滚动条,还需对容器的**height**做适当的微调。

  1. .horizontal-layout.inline {
  2. height: 102px;
  3. ul {
  4. overflow-y: hidden;
  5. white-space: nowrap;
  6. }
  7. li {
  8. display: inline-block;
  9. width: 90px;
  10. }
  11. }

上述方式有点太繁琐,实质上将所有节点当成文本排列。这里推荐使用flex布局完成上述布局,flex布局作为目前最常见的布局方式。以下实现方式不知大家是否见过呢?在移动端上体验会更棒!

  1. .horizontal-layout.flex {
  2. ul {
  3. display: flex;
  4. flex-wrap: nowrap;
  5. justify-content: space-between;
  6. }
  7. li {
  8. flex-shrink: 0;
  9. flex-basis: 90px;
  10. }
  11. }

凸显布局

「凸显布局」指容器内节点以同一方向排列且存在一个节点在某个方向上较突出的占位布局。该布局描述起来可能比较拗口,直接看以下效果吧,这是一个横向列表,节点从左往右排列,最右边的节点特别突出。这就是凸显布局的特征,凸显的节点可在凸显布局任意位置,上下左右左上左下右上右下都行。
2021-12-31-14-54-55-745417.png
这里巧妙运用**margin-*:auto**实现了凸显布局。相信大家实现水平居中固定宽度的块元素都会使用**margin:0 auto**
在此同样原理,当节点声明**margin-*:auto**时,浏览器会自动计算剩余空间并将该值赋值给该节点。在使用该技巧时必须基于**flex**布局
2021-12-31-14-54-55-886623.png2021-12-31-14-54-56-027496.png2021-12-31-14-54-56-168075.png2021-12-31-14-54-56-324329.png

  1. <ul class="highlight-layout">
  2. <li>Alibaba</li>
  3. <li>Tencent</li>
  4. <li>Baidu</li>
  5. <li>Jingdong</li>
  6. <li>Ant</li>
  7. <li>Netease</li>
  8. </ul>
  1. .highlight-layout {
  2. display: flex;
  3. align-items: center;
  4. padding: 0 10px;
  5. width: 600px;
  6. height: 60px;
  7. background-color: #3c9;
  8. li {
  9. padding: 0 10px;
  10. height: 40px;
  11. background-color: #3c9;
  12. line-height: 40px;
  13. font-size: 16px;
  14. color: #fff;
  15. }
  16. &.left li {
  17. &:not(:first-child) {
  18. margin-left: 10px;
  19. }
  20. &:last-child {
  21. margin-left: auto;
  22. }
  23. }
  24. &.right li {
  25. &:not(:last-child) {
  26. margin-right: 10px;
  27. }
  28. &:first-child {
  29. margin-right: auto;
  30. }
  31. }
  32. &.top {
  33. flex-direction: column;
  34. width: 120px;
  35. height: 400px;
  36. li {
  37. &:not(:first-child) {
  38. margin-top: 10px;
  39. }
  40. &:last-child {
  41. margin-top: auto;
  42. }
  43. }
  44. }
  45. &.bottom {
  46. flex-direction: column;
  47. width: 120px;
  48. height: 400px;
  49. li {
  50. &:not(:last-child) {
  51. margin-bottom: 10px;
  52. }
  53. &:first-child {
  54. margin-bottom: auto;
  55. }
  56. }
  57. }
  58. }

在此还有一个小技巧,那就是**:not()****:first-child****:last-child**的巧妙运用。这样组合让特殊位置的节点直接减少属性覆盖的问题,不仅易读还能装逼。

  • **:not(:first-child)**:排除首节点,其他节点都使用某些样式
  • **:not(:last-child)**:排除尾节点,其他节点都使用某些样式

    间距布局

    「间距布局」指容器内节点从左往右从上往下排列且以特定间距间隔的占位布局。间距布局常见于各大列表,是最重要的布局之一。为何如此简单的布局还是花费一些篇幅讲解呢?最近查看了Github上很多与间隔布局相关的CSS代码,虽然整体效果看上去无大碍,但margin/padding结构选择器却乱用,因此从零到一纠正间距布局的正确编码方式。
    在进入编码环节前,想重点讲解**:nth-child()**的点睛之笔。大部分同学可能只认得**:nth-child(n)****:nth-child(2n-1)****:nth-child(2n)****:nth-child(xn)**的日常用法,但其实还有一些可能未见过的用法。将**:nth-child()**所有用法总结下,n/x/y代表正整数,最小值为1

  • **:nth-child(n)**:选择第n个元素

  • **:nth-child(odd)**:选择奇数位置元素,相当于**:nth-child(2n-1)**
  • **:nth-child(even)**:选择偶数位置元素,相当于**:nth-child(2n)**
  • **:nth-child(xn)**:选择第x*n个元素
  • **:nth-child(x-n)**:选择前x个元素
  • **:nth-child(y-n)**``**:nth-child(n+x)**:选择第x~y个元素

分析间距布局的一切特点,捕获特征很有利于将特征转换成CSS代码。

  • 「A」:确定容器间的间距,使用margin声明
  • 「B」:确定容器内的间距,使用padding声明,后续方便声明background-color(该步骤很易与上一步骤混淆,请特别注意)
  • 「C」:确定靠近容器边界的节点与容器的间距,使用padding声明容器而不是使用margin声明节点(该步骤说明上一步骤的处理结果)
  • 「D」:确认每行节点的左右间距,使用margin-left/margin-right(二选一)声明节点
  • 「E」:确认最左列节点或最右列节点与容器的间距,使用margin-left:0声明最左列节点或使用margin-right:0声明最右列节点
  • 「F」:除了首行节点,使用margin-top声明其余节点
  • 「G」:若希望容器顶部底部留空,使用border-top/border-bottom代替padding-top/padding-bottom

全部步骤串联起来理解可能会产生混乱,但结合以下代码理解相信就能很快熟悉。以一行排列3个节点总共8个节点为例,最终效果为三行三列。
GIF 2021-12-31-星期五 20-27-43.gif
GIF 2021-12-31-星期五 20-28-50.gif

  1. <ul class="spacing-layout">
  2. <li>1</li>
  3. <li>2</li>
  4. <li>3</li>
  5. <li>4</li>
  6. <li>5</li>
  7. <li>6</li>
  8. <li>7</li>
  9. <li>8</li>
  10. </ul>
  1. .spacing-layout {
  2. display: flex;
  3. overflow: auto;
  4. flex-wrap: wrap;
  5. margin-top: 20px; // 对应A
  6. padding: 20px; // 对应B和C
  7. // padding-top: 0; // 对应G
  8. // padding-bottom: 0; // 对应G
  9. // border-top: 20px solid #f66; // 对应G
  10. // border-bottom: 20px solid #f66; // 对应G
  11. width: 700px; // 稍微留空用于显示滚动条
  12. height: 400px;
  13. background-color: #f66;
  14. li {
  15. width: 200px;
  16. height: 200px;
  17. background-color: #66f;
  18. line-height: 200px;
  19. text-align: center;
  20. font-size: 20px;
  21. color: #fff;
  22. &:not(:nth-child(3n)) {
  23. margin-right: 20px; // 对应D和E
  24. }
  25. &:nth-child(n+4) {
  26. margin-top: 20px; // 对应F
  27. }
  28. }
  29. }

空载布局

「空载布局」指容器内无任何节点时使用其他形式代替的占位布局。还有使用JS判断列表集合为空时显示占位符吗?相信很多使用MVVM框架开发的同学都会使用条件判断的方式渲染虚拟DOM,若列表长度不为0则渲染列表,否则渲染占位符。

  1. <div>
  2. <ul v-if="list.length">...</ul>
  3. <div v-esle>Empty</div>
  4. </div>

然而CSS提供一个空判断的选择器**:empty**,这应该很少同学会注意到吧。
**:empty**作用于无子节点的节点,该子节点也包括行内匿名盒(单独的文本内容)。以下三种情况均视为非空状态,若不出现这三种状态则视为空状态,此时**:empty**才会触发。

  • 仅存在节点:**<div><p>CSS</p></div>**
  • 仅存在文本:**<div>CSS</div>**
  • 同时存在节点和文本:**<div>Hello <p>CSS</p></div>**

2021-12-31-14-54-57-275325.png

  1. <ul class="empty-layout">
  2. <li>1</li>
  3. <li>2</li>
  4. <li>3</li>
  5. <li>4</li>
  6. <li>5</li>
  7. <li>6</li>
  8. <li>7</li>
  9. <li>8</li>
  10. <li>9</li>
  11. </ul>
  12. <ul class="empty-layout"></ul>
  1. $empty: "https://yangzw.vip/img/empty.svg";
  2. .empty-layout {
  3. overflow: auto;
  4. width: 200px;
  5. height: 150px;
  6. outline: 1px solid #3c9;
  7. &:empty {
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. background: url($empty) no-repeat center/100px auto;
  12. &::after {
  13. margin-top: 90px;
  14. font-weight: bold;
  15. content: "没钱就没数据";
  16. }
  17. }
  18. li {
  19. padding: 0 10px;
  20. height: 30px;
  21. background-color: #09f;
  22. line-height: 30px;
  23. color: #fff;
  24. &:nth-child(even) {
  25. background-color: #f90;
  26. }
  27. }
  28. }

另外还存在一种特殊的空载布局,就是不做任何处理。这样最终渲染的DOM只有容器,若已声明margin/padding/border但未声明width/height的情况下,就会出现以下占位效果。无任何子节点的容器还声明着margin/padding/border,看着都尴尬。
2021-12-31-14-54-57-384904.png
没事,**:empty**可以搞定!对于无任何子节点的容器直接声明**display:none**解决所有无效占位,当然也可作用于指定节点。

  1. // 作用于所有节点
  2. :empty {
  3. display: none;
  4. }
  5. // 作用于指定节点
  6. .empty-layout:empty {
  7. display: none;
  8. }

多格布局

「多格布局」指容器内节点以动态数量的格子形式排列的占位布局。微信朋友圈的相册就是最常见的多格布局了,当单张照片排列、两张照片排列、三张照片排列等等,每种情况下照片的尺寸都可能不一致。这里制作了一个狗狗动态多格相册「AB」。感受下纯CSS实现动态数量的多格布局吧。
主要原理是根据结构选择器限制节点范围实现!
GIF 2021-12-31-星期五 20-25-48.gif

  1. <ul class="multigrid-layout">
  2. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  3. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  4. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  5. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  6. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  7. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  8. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  9. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  10. <li class="item"><img src="https://static.yangzw.vip/codepen/ab-3.jpg"></li>
  11. </ul>
  1. @mixin square($count: 2) {
  2. $length: calc((100% - #{$count} * 10px) / #{$count});
  3. width: $length;
  4. height: $length;
  5. }
  6. .multigrid-layout {
  7. display: flex;
  8. flex-wrap: wrap;
  9. justify-content: flex-start;
  10. align-content: flex-start;
  11. padding: 5px;
  12. border: 1px solid #ccc;
  13. border-radius: 5px;
  14. width: 400px;
  15. height: 400px;
  16. li {
  17. display: flex;
  18. overflow: hidden;
  19. justify-content: center;
  20. margin: 5px;
  21. background-color: #f0f0f0;
  22. @include square(3);
  23. }
  24. img {
  25. width: 100%;
  26. height: 100%;
  27. object-fit: cover;
  28. }
  29. }
  30. // 一个元素
  31. .item:only-child {
  32. border-radius: 10px;
  33. width: auto;
  34. max-width: 80%;
  35. height: auto;
  36. max-height: 80%;
  37. }
  38. // 两个元素
  39. .item:first-child:nth-last-child(2),
  40. .item:first-child:nth-last-child(2) ~ .item:nth-child(2) {
  41. @include square(2);
  42. }
  43. .item:first-child:nth-last-child(2) {
  44. border-radius: 10px 0 0 10px;
  45. }
  46. .item:first-child:nth-last-child(2) ~ .item:nth-child(2) {
  47. border-radius: 0 10px 10px 0;
  48. }
  49. // 三个元素
  50. .item:first-child:nth-last-child(3),
  51. .item:first-child:nth-last-child(3) ~ .item:nth-child(2),
  52. .item:first-child:nth-last-child(3) ~ .item:nth-child(3) {
  53. @include square(2);
  54. }
  55. .item:first-child:nth-last-child(3) {
  56. border-top-left-radius: 10px;
  57. }
  58. .item:first-child:nth-last-child(3) ~ .item:nth-child(2) {
  59. border-top-right-radius: 10px;
  60. }
  61. .item:first-child:nth-last-child(3) ~ .item:nth-child(3) {
  62. border-bottom-left-radius: 10px;
  63. }
  64. // 四个元素
  65. .item:first-child:nth-last-child(4),
  66. .item:first-child:nth-last-child(4) ~ .item:nth-child(2),
  67. .item:first-child:nth-last-child(4) ~ .item:nth-child(3),
  68. .item:first-child:nth-last-child(4) ~ .item:nth-child(4) {
  69. @include square(2);
  70. }
  71. .item:first-child:nth-last-child(4) {
  72. border-top-left-radius: 10px;
  73. }
  74. .item:first-child:nth-last-child(4) ~ .item:nth-child(2) {
  75. border-top-right-radius: 10px;
  76. }
  77. .item:first-child:nth-last-child(4) ~ .item:nth-child(3) {
  78. border-bottom-left-radius: 10px;
  79. }
  80. .item:first-child:nth-last-child(4) ~ .item:nth-child(4) {
  81. border-bottom-right-radius: 10px;
  82. }
  83. // 五个元素
  84. .item:first-child:nth-last-child(5) {
  85. border-top-left-radius: 10px;
  86. }
  87. .item:first-child:nth-last-child(5) ~ .item:nth-child(3) {
  88. border-top-right-radius: 10px;
  89. }
  90. .item:first-child:nth-last-child(5) ~ .item:nth-child(4) {
  91. border-bottom-left-radius: 10px;
  92. }
  93. // 六个元素
  94. .item:first-child:nth-last-child(6) {
  95. border-top-left-radius: 10px;
  96. }
  97. .item:first-child:nth-last-child(6) ~ .item:nth-child(3) {
  98. border-top-right-radius: 10px;
  99. }
  100. .item:first-child:nth-last-child(6) ~ .item:nth-child(4) {
  101. border-bottom-left-radius: 10px;
  102. }
  103. .item:first-child:nth-last-child(6) ~ .item:nth-child(6) {
  104. border-bottom-right-radius: 10px;
  105. }
  106. // 七个元素
  107. .item:first-child:nth-last-child(7) {
  108. border-top-left-radius: 10px;
  109. }
  110. .item:first-child:nth-last-child(7) ~ .item:nth-child(3) {
  111. border-top-right-radius: 10px;
  112. }
  113. .item:first-child:nth-last-child(7) ~ .item:nth-child(7) {
  114. border-bottom-left-radius: 10px;
  115. }
  116. // 八个元素
  117. .item:first-child:nth-last-child(8) {
  118. border-top-left-radius: 10px;
  119. }
  120. .item:first-child:nth-last-child(8) ~ .item:nth-child(3) {
  121. border-top-right-radius: 10px;
  122. }
  123. .item:first-child:nth-last-child(8) ~ .item:nth-child(7) {
  124. border-bottom-left-radius: 10px;
  125. }
  126. // 九个元素
  127. .item:first-child:nth-last-child(9) {
  128. border-top-left-radius: 10px;
  129. }
  130. .item:first-child:nth-last-child(9) ~ .item:nth-child(3) {
  131. border-top-right-radius: 10px;
  132. }
  133. .item:first-child:nth-last-child(9) ~ .item:nth-child(7) {
  134. border-bottom-left-radius: 10px;
  135. }
  136. .item:first-child:nth-last-child(9) ~ .item:nth-child(9) {
  137. border-bottom-right-radius: 10px;
  138. }