css Position 上下左中右布局

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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="zh-CN">
 
<head>
 
    <meta charset="utf-8">
    <title>position</title>
    <style>
        html,
        body {
            height: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 0;
            text-align: center;
        }
 
        .container {
            position: relative;
            width: 100%;
            height: 100%;
            background: #FFF0F5;
        }
 
        .header {
            width: 100%;
            height: 100px;
            line-height: 100px;
            position: absolute;
            background-color: #FFDAB9;
        }
 
        .footer {
            width: 100%;
            height: 100px;
            line-height: 100px;
            position: absolute;
            bottom: 0px;
            background-color: #FFFACD;
        }
 
        .left {
            top: 100px;
            bottom: 100px;
            background-color: #20B2AA;
            width: 100px;
            position: absolute;
            overflow: auto;
        }
 
        .middle {
            top: 100px;
            left: 100px;
            bottom: 100px;
            right: 200px;
            background-color: #F0E68C;
            position: absolute;
            overflow: auto;
        }
 
        .right {
            top: 100px;
            right: 0px;
            background-color: #708090;
            overflow: auto;
            position: absolute;
            bottom: 100px;
            width: 200px;
        }
    </style>
</head>
 
<body>
    <div class="container">
        <div class="header">这是顶部</div>
        <div class="left" id="left_content">
            <script>
                for (var i = 1; i <= 500; i++) {
                    document.getElementById("left_content").innerHTML = document.getElementById("left_content").innerHTML + i.toString() + "<br/>";
                }
            </script>
        </div>
        <div class="middle" id="middle_content">
            <script>
                for (var i = 1; i <= 500; i++) {
                    document.getElementById("middle_content").innerHTML = document.getElementById("middle_content").innerHTML + (i * 10).toString() + "<br/>";
                }
            </script>
        </div>
        <div class="right" id="right_content">
            <script>
                for (var i = 1; i <= 500; i++) {
                    document.getElementById("right_content").innerHTML = document.getElementById("right_content").innerHTML + (i * 100).toString() + "<br/>";
                }
            </script>
        </div>
        <div class="footer">这是底部</div>
    </div>
 
</body>
 
</html>

  

posted @   swzyt  阅读(385)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
点击右上角即可分享
微信分享提示