ant-design/components/button/demo/size.md

27 lines
564 B
Markdown
Raw Normal View History

2015-06-17 18:22:20 +08:00
# 按钮尺寸
2015-06-17 18:22:20 +08:00
- order: 2
2015-09-27 16:30:35 +08:00
按钮有大、中、小三种尺寸。
2015-06-07 14:03:00 +08:00
2015-09-27 16:30:35 +08:00
通过设置 `size``lg` `sm` 分别把按钮设为大、小尺寸。若不设置 `size`,则尺寸为中。
---
2015-09-27 16:30:35 +08:00
````jsx
var Button = antd.Button;
React.render(<div>
<Button type="primary" size="lg">大号按钮</Button>
<Button type="primary">中号按钮(默认)</Button>
<Button type="primary" size="sm">小号按钮</Button>
</div>
, document.getElementById('components-button-demo-size'));
````
2015-09-27 16:30:35 +08:00
<style>
#components-button-demo-size .ant-btn {
margin-right: 8px;
}
</style>