You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB

---
order: 1
title:
zh-CN: 三种大小
en-US: Three sizes
---
9 years ago
## zh-CN
三种大小的选择框,当 size 分别为 `large``small` 时,输入框高度为 `32px``22px` ,默认高度为 `28px`
9 years ago
## 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.
9 years ago
````jsx
import { Select } from 'antd';
const Option = Select.Option;
9 years ago
function handleChange(value) {
console.log(`selected ${value}`);
9 years ago
}
9 years ago
ReactDOM.render(
9 years ago
<div>
<Select size="large" defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
9 years ago
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
<Option value="yiminghe">Yiminghe</Option>
9 years ago
</Select>
<Select defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
9 years ago
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
<Option value="yiminghe">Yiminghe</Option>
9 years ago
</Select>
<Select size="small" defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
9 years ago
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
<Option value="yiminghe">Yiminghe</Option>
9 years ago
</Select>
</div>
, mountNode);
9 years ago
````
````css
.code-box-demo .ant-select {
margin: 0 8px 10px 0;
9 years ago
}
#components-select-demo-search-box .code-box-demo .ant-select {
margin: 0;
}
````