div antd table 隐藏内容显示更多

div块内展示的文字:
width:10em;
overflow:hidden;
white-space:nowrap;
text-overflow: ellipsis;

在antd table里展示内容

在colums中写的内容
onCell: () => {//解决ellipsis不生效问题
    return {
        style: {
            maxWidth: 160,
            overflow: 'hidden',
            whiteSpace: 'nowrap',
            textOverflow:'ellipsis',
            cursor:'pointer'
        }
    }
},

版权声明:本文为runrun117原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。