ant-design/components/select/demo/size.md

22 lines
515 B
Markdown
Raw Normal View History

2016-07-10 08:55:43 +08:00
## zh-CN
三种大小的选择框,当 size 分别为 `large``small` 时,输入框高度为 `40px``24px` ,默认高度为 `32px`
2015-08-08 19:11:10 +08:00
2016-07-10 08:55:43 +08:00
## en-US
2017-10-20 15:47:42 +08:00
The height of the input field for the select defaults to 32px. If size is set to large, the height will be 40px, and if set to small, 24px.
2016-07-10 08:55:43 +08:00
2019-05-07 14:57:32 +08:00
```css
.code-box-demo .ant-select {
2015-10-22 21:12:13 +08:00
margin: 0 8px 10px 0;
2015-08-08 19:11:10 +08:00
}
2016-05-13 11:45:09 +08:00
2020-05-10 22:11:09 +08:00
.ant-row-rtl .code-box-demo .ant-select {
margin: 0 0 10px 8px;
}
2016-05-13 11:45:09 +08:00
#components-select-demo-search-box .code-box-demo .ant-select {
margin: 0;
}
2019-05-07 14:57:32 +08:00
```