You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
378 B

# Standard Button
10 years ago
- order: 1
10 years ago
按钮样式
10 years ago
`<button>`、`<a>` 或 `<input>` 元素添加按钮类即可使用 ant-design 提供的样式。
10 years ago
---
````html
10 years ago
<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" />
10 years ago
````