You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
930 B
48 lines
930 B
3 years ago
|
---
|
||
|
order: 100
|
||
|
title:
|
||
|
zh-CN: 测试 label 省略
|
||
|
en-US: label ellipsis
|
||
|
debug: true
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
`label` 中使用 `<Typography.Text ellipsis>` 时应该显示 `...`。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Use `<Typography.Text ellipsis>` in label should show `...`.
|
||
|
|
||
|
```tsx
|
||
|
import { Form, Input, Typography } from 'antd';
|
||
|
|
||
|
const Demo = () => (
|
||
|
<Form name="label-ellipsis" labelCol={{ span: 8 }} wrapperCol={{ span: 16 }}>
|
||
|
<Form.Item
|
||
|
label={
|
||
|
<Typography.Text ellipsis>
|
||
|
longtextlongtextlongtextlongtextlongtextlongtextlongtext
|
||
|
</Typography.Text>
|
||
|
}
|
||
|
name="username"
|
||
|
>
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
|
||
|
<Form.Item
|
||
|
label={
|
||
|
<Typography.Text ellipsis>
|
||
|
longtext longtext longtext longtext longtext longtext longtext
|
||
|
</Typography.Text>
|
||
|
}
|
||
|
name="password"
|
||
|
>
|
||
|
<Input.Password />
|
||
|
</Form.Item>
|
||
|
</Form>
|
||
|
);
|
||
|
|
||
|
ReactDOM.render(<Demo />, mountNode);
|
||
|
```
|