From a93a72e3b0db59230a93e0f3eca14060d6d5fb14 Mon Sep 17 00:00:00 2001 From: afc163 Date: Sat, 6 Aug 2016 09:05:17 +0800 Subject: [PATCH] update layout doc for missing APIs, close #2629 --- components/layout/index.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/components/layout/index.md b/components/layout/index.md index 88f92c9049..ef5d9fdd2a 100644 --- a/components/layout/index.md +++ b/components/layout/index.md @@ -87,19 +87,23 @@ Ant Design 的布局组件若不能满足你的需求,你也可以直接使用 ### Row -| 成员 | 说明 | 类型 | 默认值 | -|------------|-----------------|--------------------|-------------| -| gutter | 栅格间隔 | number | 0 | -| type | 布局模式,可选 `flex`,现代浏览器下有效 | string | | +| 成员 | 说明 | 类型 | 默认值 | +|-----------|-----------------|--------------------|-------------| +| gutter | 栅格间隔 | number | 0 | +| type | 布局模式,可选 `flex`,现代浏览器下有效 | string | | | align | flex 布局下的垂直对齐方式:`top` `middle` `bottom` | string | `top` | | justify | flex 布局下的水平排列方式:`start` `end` `center` `space-around` `space-between` | string | `start` | ### Col -| 成员 | 说明 | 类型 | 默认值 | -|------------|-----------------|--------------------|-------------| -| span | 栅格占位格数,为 0 时相当于 `display: none` | number | 无 | -| order | 栅格顺序,`flex` 布局模式下有效 | number | 0 | -| offset | 栅格左侧的间隔格数,间隔内不可以有栅格 | number | 0 | +| 成员 | 说明 | 类型 | 默认值 | +|----------|-----------------|--------------------|-------------| +| span | 栅格占位格数,为 0 时相当于 `display: none` | number | - | +| order | 栅格顺序,`flex` 布局模式下有效 | number | 0 | +| offset | 栅格左侧的间隔格数,间隔内不可以有栅格 | number | 0 | | push | 栅格向右移动格数 | number | 0 | | pull | 栅格向左移动格数 | number | 0 | +| xs | `<768px` 响应式栅格,可为栅格数或一个包含其他属性的对象 | number | object | - | +| sm | `≥768px` 响应式栅格,可为栅格数或一个包含其他属性的对象 | number | object | - | +| md | `≥992px` 响应式栅格,可为栅格数或一个包含其他属性的对象 | number | object | - | +| lg | `≥1200px` 响应式栅格,可为栅格数或一个包含其他属性的对象 | number | object | - |