- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内填充
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - Clearfix
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 位置
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 聚焦
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - 全部
- CSS - 内嵌
- CSS - 隔离
- CSS - 滚动溢出
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- 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 - 偏移量
- CSS - Accent Color
- CSS - User Select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多重背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - Caret Color
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 图片样式
- CSS - 特效性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - grid-template-areas 属性
CSS grid-template-areas 属性定义了网格中命名的区域,这些区域概述了单元格的排列并用特定名称标识它们。然后,网格的元素可以使用这些名称通过 grid-area 属性引用特定区域。
语法
grid-template-areas: none | item-names;
属性值
值 | 描述 |
---|---|
none | 它指定网格布局中没有命名区域。 |
item-names | 它是一个包含区域名称的字符串序列,用于指定行和列的大小。 |
CSS 网格模板区域属性示例
以下示例解释了具有不同值的 grid-template-areas 属性。
使用 none 值的网格模板区域属性
为了在网格布局中不包含任何命名区域,并且项目以其自然流程显示,我们使用 none 值。项目的大小取决于其内容。这在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: lightgrey; grid-gap: 10px; padding: 20px; } .container > div padding: 20px; text-align: center; color: white; border: 3px solid blue; background-color: #4775d1; grid-template-areas: none; </style> </head> <body> <h2> CSS grid-template-areas property </h2> <h4> grid-template-areas: none </h4> <div class="container"> <div> Item-1 </div> <div> Item-2 </div> <div> Item-3 </div> <div> Item-4 </div> </div> </body> </html>
使用命名区域的网格模板区域属性
为了在网格布局中具有特定的命名区域,我们将包含区域名称的字符串序列指定给 grid-template-areas 属性。每个单独的字符串序列表示一行,字符串中的名称数量表示列的数量。必须使用 grid-area 属性来引用该区域。这在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: lightgrey; grid-gap: 10px; padding: 20px; } .container>div { padding: 20px; text-align: center; color: white; border: 3px solid blue; } .container1 { grid-template: 'header header header header' 'sidebar1 content content sidebar2' 'footer footer footer footer'; } .container2 { grid-template: '. . . .' '. . item item'; } .container2>div { background-color: lightcoral; } .cont1-item1 { background-color: #05445e; grid-area: header; } .cont1-item2 { background-color: #75e6da; grid-area: sidebar1; } .cont1-item3 { background-color: #189ab4; grid-area: content; } .cont1-item4 { background-color: #8bcd50; grid-area: footer; } .cont1-item5 { background-color: #75e6da; grid-area: sidebar2; } .cont2-item1 { grid-area: item; } </style> </head> <body> <h2> CSS grid-template-areas property </h2> <p> <strong> grid-template-areas: 'header header header header' 'sidebar1 content content sidebar2' 'footer footer footer footer' </strong> ; The layout has three rows indicated by three separate strings and four columns indicated by the number of items inside strings ' ' </p> <div class=" container container1"> <div class="cont1-item1"> This is header </div> <div class="cont1-item2"> This is sidebar1 </div> <div class="cont1-item3"> This is content </div> <div class="cont1-item4"> This is footer </div> <div class="cont1-item5"> This is sidebar2 </div> </div> <p> <strong> grid-template-areas: '. . . .''. . item item' </strong> ; the layout has 2 rows and 4 columns, item1 is placed in the second row and takes 2 columns space. </p> <div class=" container container2"> <div class="cont2-item1"> Item-1 </div> <div> Item-2 </div> <div> Item-3 </div> <div> Item-4 </div> <div> Item-5 </div> <div> Item-6 </div> </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
grid-template-areas | 57 | 16 | 52 | 10 | 44 |
css_properties_reference.htm
广告