mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
15 lines
385 B
Markdown
15 lines
385 B
Markdown
# 透明背景
|
|
`Ghost` 按钮有透明的背景。
|
|
```html
|
|
<n-button ghost>Default</n-button>
|
|
<n-button type="primary" ghost>Primary</n-button>
|
|
<n-button type="info" ghost>Info</n-button>
|
|
<n-button type="success" ghost>Success</n-button>
|
|
<n-button type="warning" ghost>Warning</n-button>
|
|
<n-button type="error" ghost>Error</n-button>
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 8px 8px 0;
|
|
}
|
|
``` |