`;
diff --git a/components/select/demo/size.md b/components/select/demo/size.md
index 0697786efc..30e016d3de 100644
--- a/components/select/demo/size.md
+++ b/components/select/demo/size.md
@@ -1,8 +1,8 @@
---
order: 1
-title:
+title:
zh-CN: 三种大小
- en-US: Three sizes
+ en-US: Sizes
---
## zh-CN
@@ -14,35 +14,83 @@ title:
The height of the inpub field for the select defaults to 28px. If size is set to large, the height will be 32px, and if set to small, 22px.
````jsx
-import { Select } from 'antd';
+import { Select, Radio } from 'antd';
const Option = Select.Option;
-function handleChange(value) {
- console.log(`selected ${value}`);
+const children = [];
+for (let i = 10; i < 36; i++) {
+ children.push();
}
-ReactDOM.render(
-