站内公告:

我们的虚拟社区正式开通了

Main Menu

bootstrap table中td内容设置不换行

作者 jvip_chen, 2022-1月-05 06:25 下午

« 上一篇主题 - 下一篇主题 »

jvip_chen

bootstrap table中td内容设置不换行

/*表格内容滚动,不换行显示*/

td{
    white-space:nowrap;
    overflow:hidden;
    word-break:keep-all;
}
/*表格宽度不改变,多出的不显示*/


table{
    table-layout:fixed;
}