组件

Em

我们 必须 对此做些什么。
<Text>
We <Em>had</Em> to do something about it.
</Text>

API 参考

此组件基于 em 元素,并支持 常用外边距属性

属性类型默认值
asChild
布尔值
无默认值
truncate
布尔值
无默认值
wrap
Responsive<"wrap" | "nowrap" | "pretty" | "balance">
无默认值

示例

Truncate

使用 truncate 属性在文本溢出容器时使用省略号截断文本。

排版的目的是以比例方式关联字体大小、行高和行宽,从而最大限度地提高美观性,并使阅读更轻松愉快。
<Flex maxWidth="300px">
<Em truncate>
The goal of typography is to relate font size, line height, and line width
in a proportional way that maximizes beauty and makes reading easier and
more pleasant.
</Em>
</Flex>
上一个Code
下一个Kbd