2019-09-21 17:03:05 +08:00
|
|
|
# 透明背景
|
|
|
|
`Ghost` 按钮有透明的背景。
|
|
|
|
```html
|
|
|
|
<n-button ghost>Default</n-button>
|
2020-05-30 00:29:18 +08:00
|
|
|
<n-button type="primary" ghost>Primary</n-button>
|
2019-09-21 17:03:05 +08:00
|
|
|
<n-button type="info" ghost>Info</n-button>
|
2020-05-30 00:29:18 +08:00
|
|
|
<n-button type="success" ghost>Success</n-button>
|
2019-09-21 17:03:05 +08:00
|
|
|
<n-button type="warning" ghost>Warning</n-button>
|
2020-05-30 00:29:18 +08:00
|
|
|
<n-button type="error" ghost>Error</n-button>
|
2019-12-04 18:17:25 +08:00
|
|
|
```
|
2019-09-21 17:03:05 +08:00
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 8px 8px 0;
|
|
|
|
}
|
|
|
|
```
|