mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
21 lines
480 B
Markdown
21 lines
480 B
Markdown
|
# 文本
|
||
|
用不同类型的文本展示各种信息。
|
||
|
```html
|
||
|
<n-text type="info">Info</n-text>
|
||
|
<n-text type="success">Success</n-text>
|
||
|
<n-text type="warning">Warning</n-text>
|
||
|
<n-text type="error">Error</n-text>
|
||
|
<n-text strong>Strong</n-text>
|
||
|
<n-text italic>Italic</n-text>
|
||
|
<n-text underline>Underline</n-text>
|
||
|
<n-text delete>Delete</n-text>
|
||
|
<n-text code>Code</n-text>
|
||
|
<n-text code delete>Code</n-text>
|
||
|
```
|
||
|
```css
|
||
|
.n-text {
|
||
|
display: inline-block;
|
||
|
margin: 0 8px 12px 0;
|
||
|
}
|
||
|
```
|