mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
930 B
930 B
order | title | debug | ||||
---|---|---|---|---|---|---|
100 |
|
true |
zh-CN
label
中使用 <Typography.Text ellipsis>
时应该显示 ...
。
en-US
Use <Typography.Text ellipsis>
in label should show ...
.
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);