gdk

导航

< 2025年3月 >
23 24 25 26 27 28 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 1 2 3 4 5

统计

弹性式布局

弹性式布局就是更方便的控制内容的对齐方式

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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            .item {
                background-color: aqua;
                border: #ccc solid 1px;
                padding: 1rem;
                text-align: center;
                margin: 0.75rem;
                width: 100px;
            }
 
            #container {
                display: flex;
                flex-wrap: wrap;
                background-color: #555;
                /* 对齐方式 */
                justify-content: flex-start;
                /* flex-start(默认值) */
                /* flex-end */
                /* center */
                /* space-between */
                /* space-around */
                /* space-evenly */
                height: 600px;
                /* 项目在交叉轴的对齐方式 */
                align-items: baseline;
                /* stretch(默认值) */
                /* flex-start
                    flex-end
                    center
                    baseline
                 */
                align-content: stretch;
                /*
                 flex-start
                 flex-end
                 center
                 space-between
                 space-around
                 stretch(默认值)
                 */
            }
            .item-2{
                align-self: center;
                /*
                 auto(默认值)
                 flex-start
                 flex-end
                 center
                 baseline
                 stretch
                 */
                order: 2;
            }
            .item-1{
                order: 3;
            }
            .item-3{
                order: 1;
            }
        </style>
    </head>
    <body>
        <div id="container">
            <div class="item item-1">
                <h3>Item 1</h3>
            </div>
            <div class="item item-2">
                <h3>Item 2</h3>
            </div>
            <div class="item item-3">
                <h3>Item 3</h3>
            </div>
        </div>
    </body>
</html>

  

posted on   郭东康  阅读(19)  评论(0编辑  收藏  举报

相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示