ant-design/components/input-number/demo/size.md

42 lines
1.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
2019-05-07 14:57:32 +08:00
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` 时,输入框高度为 `40px``24px` ,默认高度为 `32px`
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 `32px`. The two additional sizes are `large` and `small` which means `40px` and `24px`, respectively.
2015-08-08 17:59:57 +08:00
2019-05-07 14:57:32 +08:00
```jsx
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(
2019-12-25 14:42:15 +08:00
<div className="site-input-number-wrapper">
<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} />
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```
2015-08-08 17:59:57 +08:00
2019-05-07 14:57:32 +08:00
```css
2019-12-25 21:54:21 +08:00
.code-box-demo .ant-input-number {
2015-08-08 17:59:57 +08:00
margin-right: 10px;
}
2020-05-10 22:11:09 +08:00
.ant-row-rtl .code-box-demo .ant-input-number {
margin-right: 0;
margin-left: 10px;
}
2019-05-07 14:57:32 +08:00
```