CSS3网格布局基础知识
程序员文章站
2022-03-26 09:22:50
...
网格布局支持弹性尺寸(flex-size),这是一个很好的自适应布局技术。
弹性尺寸使用fr尺寸单位,其来自 "fraction" 或 "fractional unit" 单词的前两个字母,表示整体空间的一部分。
比如下面的CSS规则:
grid-template-columns: 100px 1fr max-content minmax(min-content, 1fr);
表示有4列,第一列100px固定尺寸,第三列 max-content 代表刚好包含元素不溢出不换行的尺寸,剩下的2列都是弹性尺寸。
按照弹性尺寸的计算规则,两者将均分(这两列的弹性系数相等,均为1)剩下的可用空间。
完整示范代码:
#grid { display: grid; width: 100%; grid-template-columns: 100px 1fr max-content minmax(min-content, 1fr);}#areaA { background-color: lime;}#areaB { background-color: yellow;}#areaC { background-color: lime;}#areaD { background-color: orange;}#areaA { background-color: green;}div { height: 80px; line-height: 80px; text-align: center;}
Site LogoSloganUser Zone
你可以自己试试看:http://wow.techbrood.com/fiddle/15917
by iefreer
上一篇: ASP 3.0高级编程(四十)
下一篇: 全文本检索的应用(2)
推荐阅读
-
TableLayout(表格布局)基础知识点详解
-
移动端页面布局技巧、Grid布局基础知识
-
css3中 弹性盒模型布局之box-flex_html/css_WEB-ITnose
-
结合CSS3的布局新特征谈谈常见布局方法_html/css_WEB-ITnose
-
使用CSS3实现多列布局与多背景的技巧
-
[转]CSS3 Media Query实现响应布局_html/css_WEB-ITnose
-
css3学习之flex实现几种多列布局
-
css3 中最出色的功能--flex 布局
-
Android布局之GridLayout网格布局
-
Android RecyclerView网格布局(支持多种分割线)详解(2)