Grid
24 Grids System。
Design concept#
In most business situations, Ant Design needs to solve a lot of information storage problems within the design area, so based on 12 Grids System, we divided the design area into 24 sections.
We name the divided area 'box'. We suggest four boxes for horizontal arrangement at most, one at least. Boxes are proportional to the entire screen as shown in the picture above. To ensure a high level of visual comfort, we customize the typography inside of the box based on the box unit.
Outline#
In the grid system, we define the frame outside the information area based on row
and column
, to ensure that every area can have stable arrangement.
Following is a brief look at how it works:
- Establish a set of
column
in the horizontal space defined byrow
(abbreviated col) - Your content elements should be placed directly in the
col
, and onlycol
should be placed directly inrow
- The column grid system is a value of 1-24 to represent its range spans. For example, three columns of equal width can be created by
<div nz-col [nzSpan]="8" />
. - If the sum of
col
spans in arow
are more than 24, then the overflowingcol
as a whole will start a new line arrangement.
Our grid systems base on Flex layout to allow the elements within the parent to be aligned horizontally - left, center, right, wide arrangement, and decentralized arrangement. The Grid system also supports vertical alignment - top aligned, vertically centered, bottom-aligned. You can also define the order of elements by using order
.
Layout uses a 24 grid layout to define the width of each "box", but does not rigidly adhere to the grid layout.
import { NzGridModule } from 'ng-zorro-antd/grid';
Examples
Loading...
Loading...
Loading...
Loading...
sub-element align left
sub-element align center
sub-element align right
sub-element monospaced arrangement
sub-element align full
sub-element align evenly
Loading...
Align Top
col-4
col-4
col-4
col-4
Align Center
col-4
col-4
col-4
col-4
Align Bottom
col-4
col-4
col-4
col-4
Loading...
Loading...
Percentage columns
Fill rest
Raw flex style
Loading...
Loading...
Loading...
Loading...
API#
[nz-row]#
Property | Description | Type | Default |
---|---|---|---|
[nzAlign] | the vertical alignment | 'top'|'middle'|'bottom' | - |
[nzGutter] | spacing between grids, could be a number or a object like { xs: 8, sm: 16, md: 24} . or you can use array to make horizontal and vertical spacing work at the same time [horizontal, vertical] | string|number|object|[number, number]|[object, object] | 0 |
[nzJustify] | horizontal arrangement | 'start'|'end'|'center'|'space-around'|'space-between' | - |
[nz-col]#
Property | Description | Type | Default |
---|---|---|---|
[nzFlex] | flex layout style | string | number | - |
[nzOffset] | the number of cells to offset Col from the left | number | 0 |
[nzOrder] | raster order | number | 0 |
[nzPull] | the number of cells that raster is moved to the left | number | 0 |
[nzPush] | the number of cells that raster is moved to the right | number | 0 |
[nzSpan] | raster number of cells to occupy, 0 corresponds to display: none | number | - |
[nzXs] | <576px and also default setting, could be a span value or an object containing above props | number | object | - |
[nzSm] | ≥576px , could be a span value or an object containing above props | number | object | - |
[nzMd] | ≥768px , could be a span value or an object containing above props | number | object | - |
[nzLg] | ≥992px , could be a span value or an object containing above props | number | object | - |
[nzXl] | ≥1200px , could be a span value or an object containing above props | number | object | - |
[nzXXl] | ≥1600px , could be a span value or an object containing above props | number | object | - |
The breakpoints of responsive grid follow BootStrap 4 media queries rules(not including occasionally part
).