mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-19 09:47:31 +10:00
4.4 KiB
4.4 KiB
Layout
- category: Components
- chinese: 布局
- type: 基本
- cols: 1
24 栅格系统。
设计理念
100%
25%
25%
25%
25%
33.33%
33.33%
33.33%
50%
50%
66.66%
33.33%
在多数业务情况下,Ant Design需要在设计区域内解决大量信息收纳的问题,因此在12栅格系统的基础上,我们将整个设计建议区域按照24等分的原则进行划分。
划分之后的信息区块我们称之为“盒子”。建议横向排列的盒子数量最多四个,最少一个。“盒子”在整个屏幕上占比见上图。设计部分基于盒子的单位定制盒子内部的排版规则,以保证视觉层面的舒适感。
概述
布局的栅格化系统,我们是基于行(row)和列(col)来定义信息区块的外部框架,以保证页面的每个区域能够稳健地排布起来。下面简单介绍一下它的工作原理:
- 通过
row在水平方向建立一组column(简写col) - 你的内容应当放置于
col内,并且,只有col可以作为row的直接元素 - 栅格系统中的列是指1到24的值来表示其跨越的范围。例如,三个等宽d的列可以使用
.col-8来创建 - 如果一个
row中的col总和超过24,那么多余的col会作为一个整体另起一行排列
Flex 布局
我们的栅格化系统支持 Flex 布局,允许子元素在父节点内的水平对齐方式 - 居左、居中、居右、等宽排列、分散排列。子元素与子元素之间,支持顶部对齐、垂直居中对齐、底部对齐的方式。同时,支持使用 order 来定义元素的排列顺序。
Flex 布局是基于 24 栅格来定义每一个“盒子”的宽度,但排版则不拘泥于栅格。
<style> .demo-row { background-image: linear-gradient(90deg, #F5F5F5 4.16666667%, transparent 4.16666667%, transparent 8.33333333%, #F5F5F5 8.33333333%, #F5F5F5 12.5%, transparent 12.5%, transparent 16.66666667%, #F5F5F5 16.66666667%, #F5F5F5 20.83333333%, transparent 20.83333333%, transparent 25%, #F5F5F5 25%, #F5F5F5 29.16666667%, transparent 29.16666667%, transparent 33.33333333%, #F5F5F5 33.33333333%, #F5F5F5 37.5%, transparent 37.5%, transparent 41.66666667%, #F5F5F5 41.66666667%, #F5F5F5 45.83333333%, transparent 45.83333333%, transparent 50%, #F5F5F5 50%, #F5F5F5 54.16666667%, transparent 54.16666667%, transparent 58.33333333%, #F5F5F5 58.33333333%, #F5F5F5 62.5%, transparent 62.5%, transparent 66.66666667%, #F5F5F5 66.66666667%, #F5F5F5 70.83333333%, transparent 70.83333333%, transparent 75%, #F5F5F5 75%, #F5F5F5 79.16666667%, transparent 79.16666667%, transparent 83.33333333%, #F5F5F5 83.33333333%, #F5F5F5 87.5%, transparent 87.5%, transparent 91.66666667%, #F5F5F5 91.66666667%, #F5F5F5 95.83333333%, transparent 95.83333333%); overflow: hidden; } .row-flex { background: #F5F5F5; } .row div, .row-flex div { padding: 5px 0; background: rgba(24, 115, 216, 0.7); text-align: center; min-height: 28px; border: 1px solid rgba(0, 0, 0, 0.1); margin-top: 10px; margin-bottom: 10px; color: #fff; } .row .demo-col { text-align: center; padding: 40px 0; color: #fff; font-size: 18px; border: none; margin-top: 0; margin-bottom: 0; } .row .demo-col-1 { background: rgba(24, 115, 216, 0.7); } .row .demo-col-2 { background: rgba(24, 115, 216, 0.5); } .row .demo-col-3 { background: rgba(255, 255, 255, 0.2); color: #999; } .row .demo-col-4 { background: rgba(24, 115, 216, 0.6); } .row .demo-col-5 { background: rgba(255, 255, 255, 0.5); color: #999; } .hight-100 { height: 100px; } .hight-50 { height: 50px; } .hight-120 { height: 120px; } .hight-80 { height: 80px; } </style>