You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/form/demo/input-size.md

26 lines
773 B
Markdown

# Input 尺寸
10 years ago
- order: 6
10 years ago
我们为定义了 `.ant-input` 类的输入框提供了三种尺寸:大(-lg、中(默认)、小(-sm往类名添加以上后缀即可。
10 years ago
但是在 `<form>` 表单里面,我们只使用**大尺寸** 即高度为 **32px**,作为唯一的尺寸。
---
````html
<div class="row">
<div class="ant-input-group">
<div class="col-6">
<input class="ant-input ant-input-lg" type="text" id="largeInput" placeholder="大尺寸"/>
</div>
<div class="col-6">
<input class="ant-input" type="text" id="defaultInput" placeholder="默认尺寸"/>
</div>
<div class="col-6">
<input class="ant-input ant-input-sm" type="text" id="smallInput" placeholder="小尺寸"/>
</div>
</div>
</div>
````