tcon
Version:
30 lines (25 loc) • 681 B
Markdown
# 文本 text
按需引入
```js
import 'tcon/dist/text.css'
// or
import { text } from 'tcon'
```
::: tip
更多特性,请查看[组件](/components/) - [文本](/components/text.md)
:::
|类|样式|描述|
|----|----|----|
|文本方向||
|.tl|{ text-align: left; } |
|.tc|{ text-align: center; } |
|.tr|{ text-align: right; } |
|文本样式||
|.i|{ font-style: italic; }|斜体|
|.b|{ font-weight: bold; }|粗体|
|.underline|{ text-decoration: underline; }|下划线|
|.strike|{ text-decoration: line-through; }|删除线|
|.ellipsis|{ text-overflow: ellipsis; }||
|文本换行||
|.break|{ word-break: break-all; }|换行|
|.nowrap|{ white-space: nowrap; }|不换行|