mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
17 lines
378 B
Markdown
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" />
|
|
````
|