用于标记文本以强调重点。
<Text>
We <Em>had</Em> to do something about it.
</Text>
此组件基于em
元素,并支持常用边距属性。
属性 | 类型 | 默认值 |
---|---|---|
asChild | 布尔值 | 无默认值 |
truncate | 布尔值 | 无默认值 |
wrap | 响应式<"wrap" | "nowrap" | "pretty" | "balance"> | 无默认值 |
使用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>