网格布局 HTML CSS grid layout demo

文章目录

页面效果

代码 (HTML + CSS)

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网格布局 grid layout demo wuyujin1997</title>
    <style>
        * {
            outline: auto;
        }
        .fill_parent {
            min-height: 60vh;
            max-width: 90%;
        }

        .grid_container > div {
            background-color: pink;
            /* 左右居中 */
            text-align: center;
            /* 上下居中 */
            align-content: center;
        }
        .item_header { grid-area: a; }
        .item_left_menu { grid-area: c; }
        .item_main_content { grid-area: d; }
        .item_right { grid-area: e; }
        .item_footer { grid-area: b; }
        .grid_container {
            display: grid;
            /* grid 或 grid-template-areas 都可以 */
            grid-template-areas:
                'a a a a a'
                'c d d d e'
                'c d d d e'
                'b b b b b'
            ;
            grid-gap: 10px;
            background-color: gray;
        }

    </style>
</head>
<body>

    <p>start p</p>
    <div class="grid_container fill_parent">
        <div class="item_header"><span>header content</span></div>
        <div class="item_left_menu"><span>left_menu content</span></div>
        <div class="item_main_content"><span>main_content content</span></div>
        <div class="item_right"><span>right content</span></div>
        <div class="item_footer"><span>footer content</span></div>
    </div>
    <p>end   p</p>

</body>
</html>

参考

相关推荐
zwjapple3 小时前
docker-compose一键部署全栈项目。springboot后端,react前端
前端·spring boot·docker
AA-代码批发V哥5 小时前
HTML之语义化标签与多媒体标签
html
像风一样自由20205 小时前
HTML与JavaScript:构建动态交互式Web页面的基石
前端·javascript·html
aiprtem6 小时前
基于Flutter的web登录设计
前端·flutter
浪裡遊6 小时前
React Hooks全面解析:从基础到高级的实用指南
开发语言·前端·javascript·react.js·node.js·ecmascript·php
why技术6 小时前
Stack Overflow,轰然倒下!
前端·人工智能·后端
GISer_Jing6 小时前
0704-0706上海,又聚上了
前端·新浪微博
止观止7 小时前
深入探索 pnpm:高效磁盘利用与灵活的包管理解决方案
前端·pnpm·前端工程化·包管理器
whale fall7 小时前
npm install安装的node_modules是什么
前端·npm·node.js
烛阴7 小时前
简单入门Python装饰器
前端·python