mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
15 lines
406 B
Markdown
15 lines
406 B
Markdown
|
# 透明背景
|
||
|
`Ghost` 按钮有透明的背景。
|
||
|
```html
|
||
|
<n-button ghost>Default</n-button>
|
||
|
<n-button round type="primary" ghost>Primary</n-button>
|
||
|
<n-button type="info" ghost>Info</n-button>
|
||
|
<n-button circle type="success" icon="md-save" ghost />
|
||
|
<n-button type="warning" ghost>Warning</n-button>
|
||
|
<n-button type="error" ghost disabled>Error</n-button>
|
||
|
```
|
||
|
```css
|
||
|
.n-button {
|
||
|
margin: 0 8px 8px 0;
|
||
|
}
|
||
|
```
|