赞
踩
display:grid; 指定一个容器采用网格布局 display:inline-grid;
grid-template-colunms: 定义每一列的宽 取值 100px 200px 300px 25% 25% 25% 25% grid-template-rows: 定义每一行的高 100px 200px 300px
repeat(重复的次数,重复的值)函数repeat(重复的次数,重复的模式)
grid-template-columns: repeat(auto-fill,50px)
grid-template-rows: 33.3% 33.3% 33.3% 33.3%
auto-fill:自动填充 关键字
fr 关键字 fraction 部分 片段 类比于 flex 1
minmax( ,) 最小不能小于多少 最大不能大于多少
grid-template-rows: 1fr 1fr minmax(100px,200px) 其他的行自适应
最后一行 最小不能小于 100px 最大不能大于 200px
auto关键字 浏览器决定长度 ()
grid-template-rows: 1fr auto 1fr
当元素设置为grid布局后 项目(子元素)flaot ,display:inline-block,display:table-cell,certical-align,
column-*
grid-template-columns: [c1] fr [c2]fr [c3]fr
grid-template-rows: [a1] fr [a2]fr [a3]fr
grid-te,plate-areas:'a b c'
'd e f' 分为9个区域
'g h i'
用不到的区域 使用 . 表示
一旦定义区域名 网格线名自动名 区域名 -start 区域名-end
justify-content : 整个内容区域在容器中的水平位置
align-content 整个内容区域在容器中的垂直位置
place-content: 简写
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。