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

38 lines
568 B
Markdown
Raw Normal View History

---
order: 9
title:
zh-CN: block 按钮
en-US: block Button
---
## zh-CN
`block`属性将使按钮适合其父宽度。
## en-US
`block` property will make the button fit to its parent width.
2019-05-07 14:57:32 +08:00
```jsx
import { Button } from 'antd';
ReactDOM.render(
<div>
2019-05-07 14:57:32 +08:00
<Button type="primary" block>
Primary
</Button>
<Button block>Default</Button>
2019-05-07 14:57:32 +08:00
<Button type="dashed" block>
Dashed
</Button>
<Button type="danger" block>
Danger
</Button>
<Button type="link" block>
Link
</Button>
</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
```