ant-design/components/button/demo/basic.md
2015-06-11 17:20:24 +08:00

17 lines
378 B
Markdown

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