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

统计

全局使用

:root {
--primary-color: aqua;
--light-color: red;
--secondary-color: blue;
--max-width: 1000px;
--box-1-width: 3;
--box-2-width: 1;
}

里面设置的东西可以全局使用

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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            /* 全局使用 */
            :root {
                --primary-color: aqua;
                --light-color: red;
                --secondary-color: blue;
                --max-width: 1000px;
                --box-1-width: 3;
                --box-2-width: 1;
            }
 
            * {
                padding: 0;
                margin: 0;
            }
 
            body {
                font-family: arial, helvetica, sans-serif;
                line-height: 1.4;
                background-color: var(--light-color);
            }
 
            header {
                background-color: var(--primary-color);
                color: #fff;
                border-bottom: 5px solid var(--secondary-color);
                text-align: center;
            }
 
            .container {
                display: flex;
                margin: 0 auto;
                max-width: var(--max-width);
            }
 
            .box {
                background-color: var(--primary-color);
                border-bottom: 5px solid var(--secondary-color:blue);
                color: #fff;
                padding: 1rem;
                margin: 1rem;
            }
 
            .box-1 {
                flex: var(--box-1-width)
            }
             
            .box-2 {
                flex: var(--box-2-width)
            }
        </style>
    </head>
    <body>
        <header>
            <h1>欢迎来到米修在线</h1>
        </header>
        <div class="container">
            <div class="box box-1">
                <h3>标题</h3>
                <p>Lorem ipsum dolor, sit ametconsectetur adipisicing elit. Reminventore ut illo labore,hicquibusdam.
                </p>
            </div>
            <div class="box box-2">
                <h3>标题</h3>
                <p>Lorem ipsum dolor, sit ametconsectetur adipisicing elit. Reminventore ut illo labore,hicquibusdam.
                </p>
            </div>
        </div>
    </body>
</html>

  

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

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