vue+ant-design 实现table的td元素限定为固定的宽度,超出的字用省略号代替
效果:首选在table标签下,加入下列table-layout="fixed"的属性:.ant-table{table-layout: fixed;}然后再table里面的td下加入下列属性:.ant-table-tbody > tr > td {max-width: 110px;border-bottom: 0;text-align: cente...
·
效果:
首选在table标签下,加入下列table-layout="fixed"的属性:
.ant-table{
table-layout: fixed;
}
然后再table里面的td下加入下列属性:
.ant-table-tbody > tr > td {
max-width: 110px;
border-bottom: 0;
text-align: center !important;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
更多推荐
已为社区贡献2条内容
所有评论(0)