- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - Grid 布局
CSS Grid Layout 是一个二维布局系统,用于开发响应式网页。在本教程中,我们将学习如何使用Grid 系统设计网页布局。
什么是 Grid 布局?
Grid Layout 用于通过在网页上提供响应式和灵活的 HTML 组件排列来增强所有用户设备上的用户体验。
Grid 非常适合创建网页的整体布局,而 flexbox 主要用于对齐容器内的项目。
Grid元素
在Grid 布局系统中,我们有两个元素,Grid 容器 和 Grid 项。
Grid 容器
Grid 容器定义了 grid 的外部元素,其中所有子元素都存在。可以通过设置 'display: grid' 或 'display: inline-grid' 来定义Grid 容器
Grid 项
Grid 项是Grid 容器内的所有直接元素。这些物品可以根据需要在 flexbox 容器内垂直和水平排列。
Display Grid 属性
如果我们将显示属性的值设置为“grid”或“inline-grid”,则HTML元素将成为网格容器。 网格容器的所有直接子项都会自动成为网格项。
- Grid :此值定义块级Grid 容器,意味着它的行为类似于具有全可用宽度的块元素。( 类似于 div )
- 内联 Grid :此值定义内联级别Grid 容器,意味着它的行为类似于内联元素,其宽度与其内容一样多。( 类似于 span )
例
以下示例显示了 grid 和 inline-grid 之间的区别
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
width: 100%;
background-color: lightblue;
}
.inline-grid-container {
display: inline-grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
background-color: lightgreen;
}
.grid-item {
background-color: lightcoral;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<h3>Inline Grid Example</h3>
<p>
Here is an example of
<span class="inline-grid-container">
<span class="grid-item">1</span>
<span class="grid-item">2</span>
<span class="grid-item">3</span>
</span>
inline grid.
</p>
<h3>Grid Example</h3>
<div class="grid-container">
<div class="grid-item">1</div>
<div class="grid-item">2</div>
<div class="grid-item">3</div>
</div>
</body>
</html>
Grid 行和列
在 CSS 中,我们可以定义布局中所需的列数和行数。每个单元格将代表一个网格项。以下代码演示如何在网格中定义行和列。
例在此示例中,我们将创建两个网格布局,一个用于行,另一个用于列,每个网格都有行和列,但单独显示它们将帮助您破解行和列。
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.grid-container {
display: grid;
gap: 10px;
padding: 10px;
width: 75%;
}
.grid-item {
background-color: #4CAF50;
border: 1px solid #ddd;
padding: 20px;
text-align: center;
font-size: 1.2em;
color: white;
}
.row{
grid-template-columns: 1fr;
grid-template-rows: repeat(3, 1fr);
}
.column{
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
}
</style>
</head>
<body>
<h1>Grid Layout Example</h1>
<h3>Grid Rows - 3 Rows X 1 Column</h3>
<div class="grid-container row">
<div class="grid-item item1">
Item 1
</div>
<div class="grid-item item2">
Item 2
</div>
<div class="grid-item item3">
Item 3
</div>
</div>
<h3>Grid Columns - 1 Row X 3 Columns </h3>
<div class="grid-container column">
<div class="grid-item item1">
Item 1
</div>
<div class="grid-item item2">
Item 2
</div>
<div class="grid-item item3">
Item 3
</div>
</div>
</body>
</html>
Grid 间隙
Grid 间隙属性用于在Grid 项的行和列之间添加间隙。我们有三个与此相关的属性,“gap”、“column-gap”和“row-gap”。
gap 属性可以为行和列设置相等的间距,而 'row-gap' 和 'column-gap' 可以为行和列设置不同的间隙值。行值和列值比间隙值更优先,因此,如果我们定义所有三个行值和列值,将覆盖间隙值。
例在此示例中,我们试图解释网格项之间的差距。
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 100px 100px 100px;
/* Sets both row and column gaps to 20px */
gap: 20px;
/* Make gap between rows as 10px (override) */
row-gap: 10px;
/* Make gap between columns as 5px (override) */
column-gap: 5px;
}
.grid-item {
background-color: #4CAF50;
border: 1px solid #ddd;
padding: 20px;
text-align: center;
font-size: 1.2em;
color: white;
}
</style>
</head>
<body>
<h1>Grid Gap Example</h1>
<div class="grid-container">
<div class="grid-item">
Item 1
</div>
<div class="grid-item">
Item 2
</div>
<div class="grid-item">
Item 3
</div>
<div class="grid-item">
Item 4
</div>
<div class="grid-item">
Item 5
</div>
<div class="grid-item">
Item 6
</div>
</div>
</body>
</html>
CSS Grid 线
在CSS中,Grid 项可以根据Grid 单元之间的假想线放置,称为Grid 项。列之间的行称为列行,行之间的行称为行行。
CSS Grid 属性参考
以下是与网格相关的 CSS 属性列表:
属性 | 值 |
---|---|
display | 定义元素是Grid容器还是内联网格容器。 |
gap | 定义行和列之间的间距。 |
grid-area | 定义网格项在Grid布局中的位置和大小。 |
grid-column | 控制网格项在Grid容器中按列方向的位置。 |
grid-row | 控制网格项在Grid容器中沿行方向的位置。 |
grid-template | 指定Grid列、Grid行和Grid区域。 |
grid-auto-columns | 确定自动生成的Grid列轨道的大小或此类轨道的模式。 |
grid-auto-rows | 确定自动生成的Grid行、轨迹的大小或此类轨迹的模式。 |
grid-auto-flow | 指定Grid项在Grid中的排列方式。 |