前端页面,表格内容显示过长,隐藏显示

        td过长,隐藏显示
        table td {
            max-width: 100px;
            word-wrap: break-word;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

        table td:hover {
            white-space: normal;
            overflow: auto;
        }

猜你喜欢

转载自blog.csdn.net/qq_38261174/article/details/96990321