line.md 761 Bytes
Newer Older
niko's avatar
niko committed
1 2
---
order: 1
nikogu's avatar
nikogu committed
3
title: 按照行数省略
niko's avatar
niko committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
---

通过设置 `lines` 属性指定最大行数,如果超过这个行数的文本会自动截取。但是在这种模式下所有 `children` 将会被转换成纯文本。

并且注意在这种模式下,外容器需要有指定的宽度(或设置自身宽度)。

````jsx
import Ellipsis from 'ant-design-pro/lib/Ellipsis';

const article = <p>There were injuries alleged in three <a href="#cover">cases in 2015</a>, and a fourth incident in September, according to the safety recall report. After meeting with US regulators in October, the firm decided to issue a voluntary recall.</p>;

ReactDOM.render(
  <div style={{ width: 200 }}>
    <Ellipsis lines={3}>{article}</Ellipsis>
  </div>
, mountNode);
````