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/button/demo/basic.md

17 lines
442 B
Markdown

# Standard Button
10 years ago
- order: 1
10 years ago
按钮样式
10 years ago
`<button>`、`<a>` 或 `<input>` 元素添加按钮类即可使用 ant-design 提供的样式。
10 years ago
---
````html
<button class="ant-btn ant-btn-default">Button</button>
<a href="javascript:;" class="ant-btn ant-btn-default" role="button">Link</a>
<input class="ant-btn ant-btn-default" type="button" value="Input" />
<input class="ant-btn ant-btn-default" type="submit" value="Submit" />
10 years ago
````