宽高等比缩放

10/25/2023 样式效果

# 重点

包含块:当一个元素的宽高设置为百分比时,改元素百分比的取值为参考对象为包含块

确定包含块依赖position属性:

  • static、relative或sticky,包含块由其最近的内容边缘组成
  • absolute,包含块由其最近的 position 不是 static 的 祖先元素的 内边距区域 边缘组成
  • fixed,包含块基于视口大小
  • absolute或fixed,包含块可能由满足以下条件的父元素内边距区域确定:
    • transform,filter 或 perspective 的值不是 none
    • will-change 的值为 transform 或 perspective
    • backdrop-filter的值不是none
    • contain的值为 paint

包含块百分比值计算:

  1. 如果元素的 height、top、bottom中包含百分比值,则属性值由包含块的height值确定。
  2. 如果元素的 width、left、right、padding、margin中包含百分比值,则属性值由包含块的width值确定。

如需要让高度随宽度变化,比如要设置盒子的宽高比保持为16:9,我们可以为盒子的内边距设置为 padding-bottom: 75%, 盒子的高度由内容撑开,内容为盒子宽度75%的内边距组成。如果我们想要在盒子内能填充一些内容,则我们需要在添加一个内层盒子, 并设置为绝对定位。

# 代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .parent {
            margin: 0 auto;
            width: 50%;
        }

        .children {
            width: 100%;
            padding-bottom: 50%;
            position: relative;
        }

        .container {
            position: absolute;
            inset: 0;
            background-color: #ffc107;
        }

    </style>
</head>
<body>
<div class="parent">
    <div class="children">
        <div class="container">
            hello, myfriend!
        </div>
    </div>
</div>


</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44