naive-ui/demo/documentation/components/typography/zhCN/text.md

21 lines
480 B
Markdown
Raw Normal View History

2019-12-31 17:16:51 +08:00
# 文本
用不同类型的文本展示各种信息。
```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;
}
```