diff --git a/components/button/demo/multiple.md b/components/button/demo/multiple.md
new file mode 100644
index 0000000000..c2d378a7d2
--- /dev/null
+++ b/components/button/demo/multiple.md
@@ -0,0 +1,44 @@
+---
+order: 6
+title:
+ zh-CN: 多个按钮组合
+ en-US: Multiple Buttons
+---
+
+## zh-CN
+
+按钮组合使用时,推荐使用1个主操作 + n 个次操作,3个以上操作时把更多操作放到 `Dropdown.Button` 中组合使用。
+
+## en-US
+
+If you need several buttons, we recommend that you use 1 primary button + n secondary buttons, and if there are more than three operations, you can group some of them into `Dropdown.Button`.
+
+
+````jsx
+import { Button, Menu, Dropdown, Icon } from 'antd';
+
+function handleMenuClick(e) {
+ console.log('click', e);
+}
+
+const menu = (
+
+);
+
+ReactDOM.render(
+
+
+
+
+
+
+
,
+ mountNode
+);
+````
diff --git a/components/table/demo/row-selection.md b/components/table/demo/row-selection.md
index 9ce02fc6ae..1f21597f6d 100644
--- a/components/table/demo/row-selection.md
+++ b/components/table/demo/row-selection.md
@@ -11,7 +11,7 @@ title:
## en-US
-Rows can be selectable by making fisrt column as a selectable column.
+Rows can be selectable by making first column as a selectable column.
````jsx
import { Table } from 'antd';
diff --git a/components/tag/demo/colorful.md b/components/tag/demo/colorful.md
index 9fa67d2f53..3453a7ab67 100644
--- a/components/tag/demo/colorful.md
+++ b/components/tag/demo/colorful.md
@@ -1,24 +1,21 @@
---
-order: 1
-title:
- zh-CN: 各种类型
- en-US: Colorful tags
+debug: true
+order: -1
+title: Colorful Tags for Debugging
---
-## zh-CN
-
-四种颜色的标签。
-
-## en-US
-Colorful tags.
+`Tag[color]` is deprecated, but we need this demo for debugging until next major version.
````jsx
import { Tag } from 'antd';
-ReactDOM.render(