From f648edacdb10cbb566b573079aeefa72f991dc4a Mon Sep 17 00:00:00 2001 From: Benjy Cui Date: Mon, 24 Jul 2017 10:12:16 +0800 Subject: [PATCH] docs: explain what it n, close: #6934 --- components/grid/demo/gutter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/grid/demo/gutter.md b/components/grid/demo/gutter.md index 4969fd2930..1c9bb7594b 100644 --- a/components/grid/demo/gutter.md +++ b/components/grid/demo/gutter.md @@ -7,11 +7,11 @@ title: ## zh-CN -栅格常常需要和间隔进行配合,你可以使用 `Row` 的 `gutter` 属性,我们推荐使用 `(16+8n)px` 作为栅格间隔。 +栅格常常需要和间隔进行配合,你可以使用 `Row` 的 `gutter` 属性,我们推荐使用 `(16+8n)px` 作为栅格间隔。(n 是自然数) ## en-US -You can use the `gutter` property of `Row` as grid spacing, we recommend set it to `(16 + 8n) px`. +You can use the `gutter` property of `Row` as grid spacing, we recommend set it to `(16 + 8n) px`. (`n` stands for natural number.) ````jsx import { Row, Col } from 'antd';