mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
496 B
496 B
order | title | ||||
---|---|---|---|---|---|
10 |
|
zh-CN
block
属性将使按钮适合其父宽度。
en-US
block
property will make the button fit to its parent width.
import { Button } from 'antd';
export default () => (
<>
<Button type="primary" block>
Primary
</Button>
<Button block>Default</Button>
<Button type="dashed" block>
Dashed
</Button>
<Button type="link" block>
Link
</Button>
</>
);