2016-03-31 09:40:55 +08:00
---
order: 1
2016-08-18 15:59:07 +08:00
title:
zh-CN: 三种大小
en-US: Sizes
2016-03-31 09:40:55 +08:00
---
2015-08-08 17:59:57 +08:00
2016-08-18 15:59:07 +08:00
## zh-CN
三种大小的数字输入框,当 size 分别为 `large` 和 `small` 时,输入框高度为 `32px` 和 `22px` ,默认高度为 `28px`
2016-08-18 15:46:11 +08:00
2016-08-18 15:59:07 +08:00
## en-US
There are three sizes available to a numeric input box. By default, the size is `28px` . The two additional sizes are `large` and `small` which means `32px` and `22px` , respectively.
2015-08-08 17:59:57 +08:00
2017-01-19 15:19:03 +08:00
````__react
2015-10-28 20:55:49 +08:00
import { InputNumber } from 'antd';
2015-08-08 17:59:57 +08:00
function onChange(value) {
console.log('changed', value);
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2016-04-29 12:13:27 +08:00
< div >
< InputNumber size = "large" min = {1} max = {100000} defaultValue = {3} onChange = {onChange} / >
< InputNumber min = {1} max = {100000} defaultValue = {3} onChange = {onChange} / >
< InputNumber size = "small" min = {1} max = {100000} defaultValue = {3} onChange = {onChange} / >
< / div >
2015-12-29 12:08:58 +08:00
, mountNode);
2015-08-08 17:59:57 +08:00
````
````css
2016-04-29 12:13:27 +08:00
.ant-input-number {
2015-08-08 17:59:57 +08:00
margin-right: 10px;
}
2015-10-20 16:47:55 +08:00
````