--- order: 1 title: zh-CN: 三种大小 en-US: Sizes --- ## zh-CN 三种大小的选择框,当 size 分别为 `large` 和 `small` 时,输入框高度为 `32px` 和 `22px` ,默认高度为 `28px` ## 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. ````jsx import { Select, Radio } from 'antd'; const Option = Select.Option; const children = []; for (let i = 10; i < 36; i++) { children.push(); } function handleChange(value) { console.log(`Selected: ${value}`); } class SelectSizesDemo extends React.Component { state = { size: 'default', }; handleSizeChange = (e) => { this.setState({ size: e.target.value }); } render() { const { size } = this.state; return (
Large Default Small




); } } ReactDOM.render(, mountNode); ```` ````css .code-box-demo .ant-select { margin: 0 8px 10px 0; } #components-select-demo-search-box .code-box-demo .ant-select { margin: 0; } ````