HTML Grid 另一种布局方法

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网格布局测试</title>
    <link rel="stylesheet" href="grid-css.css">
</head>
<body>
    <div class="container">
        <div class="header">头部</div>
        <div class="left">内容左侧</div>
        <div class="main">内容中间</div>
        <div class="right">内容右侧</div>
        <div class="footer">底部</div>         
    </div>
</body>
</html>

grid-css.css

.container {
  display: grid;
  grid-template-columns: 200px auto 200px;
  grid-template-rows: 100px 500px 100px;
}
.header,.footer{
  grid-column: 1 / 4;
  background-color: lightblue;
  text-align: center;
}
.main {
  background-color: lightgreen;
  text-align: center;
}
.left {
    background-color: lightcoral;
    text-align: center;
}
.right {
    background-color: lightcoral;
    text-align: center;
}

相关推荐

  1. github 通过ssh进行连接的方式

    2024-01-23 10:44:02       36 阅读
  2. 老项目接入kafka消费信息方式

    2024-01-23 10:44:02       17 阅读
  3. 【Linux】基于rpm安装yum的方式

    2024-01-23 10:44:02       12 阅读
  4. 实时数仓的构建方法starRocks的物化视图

    2024-01-23 10:44:02       17 阅读
  5. 企业数字化的解读

    2024-01-23 10:44:02       32 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-01-23 10:44:02       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-23 10:44:02       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-23 10:44:02       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-23 10:44:02       20 阅读

热门阅读

  1. 【Delphi 基础知识 24】Format函数的用法

    2024-01-23 10:44:02       35 阅读
  2. Linux稀碎知识点 -- 挂载点和分区

    2024-01-23 10:44:02       36 阅读
  3. C Primer Plus(第六版)13.11 编程练习 第1题

    2024-01-23 10:44:02       28 阅读
  4. 20240122周报—redis收官,网络开搞

    2024-01-23 10:44:02       33 阅读
  5. 编程笔记 html5&css&js 052 CSS伪类

    2024-01-23 10:44:02       35 阅读
  6. NLP自然语言处理原理应用讲解

    2024-01-23 10:44:02       36 阅读
  7. 自然语言处理的发展

    2024-01-23 10:44:02       34 阅读
  8. krpano制作无水印360°场景方法

    2024-01-23 10:44:02       25 阅读
  9. P1697 [USACO18JAN] Lifeguards B 题解

    2024-01-23 10:44:02       28 阅读
  10. 面试题(三)mybatis

    2024-01-23 10:44:02       33 阅读