CSS

228 阅读1分钟

table表格 列数据一行显示,不分行

<style>
    table td {
        word-break: keep-all;
        white-space: nowrap;
    }
    table th {
        word-break: keep-all;
        white-space: nowrap;
    }
</style>