univue系列CSS

h5移动端表格样式兼容

2023-02-13  本文已影响0人  litielongxx

主流css

table {
            table-layout: fixed !important;
            width: 100% !important;
            border-collapse: collapse;
            border: none;
            font-size: 0.23rem;
        }

        td,
        th {
            width: 1px;
            white-space: nowrap;
            /* 自适应宽度*/
            word-break: keep-all;
            /* 避免长单词截断,保持全部 */
            border: solid #676767 1px;
            text-align: center;
            white-space: pre-line;
            word-break: break-all !important;
            word-wrap: break-word !important;
            display: table-cell;
            vertical-align: middle !important;
            white-space: normal !important;
            height: auto;
            vertical-align: text-top;
            padding: 2px 2px 0 2px;
            display: table-cell;
        }
上一篇 下一篇

猜你喜欢

热点阅读