css固定table标签,防止td内容过多撑开表格

2021-12-22
table {
    table-layout: fixed; 
    word-break: break-all; 
    border-collapse: collapse;
}

记得给td设置宽度

{/if}