- 选项卡一内容
- 选项卡二内容
- 选项卡三内容
+ Content of Tab 1
+ Content of Tab 2
+ Content of Tab 3
);
diff --git a/components/tabs/demo/size.md b/components/tabs/demo/size.md
index 19e455e4fb..bb079f93f4 100644
--- a/components/tabs/demo/size.md
+++ b/components/tabs/demo/size.md
@@ -3,17 +3,23 @@ order: 5
title: 迷你型
---
+## zh-CN
+
用在弹出框等较狭窄的容器内。
+## en-US
+
+Small size can be uesed in Modal.
+
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
ReactDOM.render(
- 选项卡一内容
- 选项卡二内容
- 选项卡三内容
+ Content of tab 1
+ Content of tab 2
+ Content of tab 3
, mountNode);
````
diff --git a/components/tabs/demo/slide.md b/components/tabs/demo/slide.md
index 1439e4d9ac..e04f49b6e2 100644
--- a/components/tabs/demo/slide.md
+++ b/components/tabs/demo/slide.md
@@ -3,23 +3,29 @@ order: 3
title: 滑动
---
+## zh-CN
+
可以左右滑动,容纳更多标签。
+## en-US
+
+Tab can be slide to left or right, which is used for a lot of tabs.
+
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
ReactDOM.render(
- 选项卡一
- 选项卡二
- 选项卡三
- 选项卡四
- 选项卡五
- 选项卡六
- 选项卡七
- 选项卡八
- 选项卡九
+ Content of tab 1
+ Content of tab 2
+ Content of tab 3
+ Content of tab 4
+ Content of tab 5
+ Content of tab 6
+ Content of tab 7
+ Content of tab 8
+ Content of tab 9
, mountNode);
````
diff --git a/components/tabs/index.en-US.md b/components/tabs/index.en-US.md
new file mode 100644
index 0000000000..9a58df0157
--- /dev/null
+++ b/components/tabs/index.en-US.md
@@ -0,0 +1,40 @@
+---
+category: Components
+type: Navigation
+english: Tabs
+---
+
+Tabs make it easy to switch between different views.
+
+### When to use
+
+Ant Design has 3 types Tabs for different situation.
+
+- Card Tabs: for managing too many closeable views.
+
+- Normall Tabs: for functional aspects of a page.
+
+- RadioButton: for secondary tabs.
+
+## API
+
+### Tabs
+
+| Property | Description | Type | Default |
+|--------------|-----------------------|----------|--------------|
+| activeKey | Current TabPane's key| String | _ |
+| defaultActiveKey | Default actived tabPanel's key, if activeKey is not setted. | - |
+| onChange | Callback when tab is switched | Function | - |
+| onTabClick | Callback when tab is clicked | Function | - |
+| tabBarExtraContent | Extra element in tab bar | React Node | - |
+| type | Basic style of tabs. Options: line, card & editable-card | String | line |
+| size | Tab bar size. Options: default, small | String | default |
+| tabPosition | Position of tabs. Options: top, right, bottom & left | String | top |
+| onEdit | Callback when tab is added or removed, which is executing when set type as editable-card | Function(targetKey, action) | - |
+| hideAdd | Hide plus icon or not, which is effective when set type as editable-card | Boolean | false |
+
+### Tabs.TabPane
+| Property | Description | Type | Default |
+|--------------|-----------------------|----------|--------------|
+| key | TabPane's key | String | _ |
+| tab | Show text in TabPane's head | React.Element or String | _ |
\ No newline at end of file
diff --git a/components/tabs/index.md b/components/tabs/index.zh-CN.md
similarity index 100%
rename from components/tabs/index.md
rename to components/tabs/index.zh-CN.md