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

57 lines
1.5 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
2016-07-10 08:55:43 +08:00
title:
zh-CN: 三种大小
en-US: Three sizes
2016-03-31 09:40:55 +08:00
---
2015-08-08 19:11:10 +08:00
2016-07-10 08:55:43 +08:00
## zh-CN
2015-08-10 13:22:50 +08:00
三种大小的选择框,当 size 分别为 `large``small` 时,输入框高度为 `32px``22px` ,默认高度为 `28px`
2015-08-08 19:11:10 +08:00
2016-07-10 08:55:43 +08:00
## en-US
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.
2015-08-08 19:11:10 +08:00
````jsx
import { Select } from 'antd';
const Option = Select.Option;
2015-08-08 19:11:10 +08:00
function handleChange(value) {
console.log(`selected ${value}`);
2015-08-08 19:11:10 +08:00
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-08-08 19:11:10 +08:00
<div>
<Select size="large" defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
2015-08-08 19:11:10 +08:00
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
2016-10-12 11:04:40 +08:00
<Option value="yiminghe">Yiminghe</Option>
2015-08-08 19:11:10 +08:00
</Select>
<Select defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
2015-08-08 19:11:10 +08:00
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
2016-10-12 11:04:40 +08:00
<Option value="yiminghe">Yiminghe</Option>
2015-08-08 19:11:10 +08:00
</Select>
<Select size="small" defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
2015-08-08 19:11:10 +08:00
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
2016-10-12 11:04:40 +08:00
<Option value="yiminghe">Yiminghe</Option>
2015-08-08 19:11:10 +08:00
</Select>
</div>
, mountNode);
2015-08-08 19:11:10 +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
#components-select-demo-search-box .code-box-demo .ant-select {
margin: 0;
}
2015-08-20 17:27:40 +08:00
````