css隐藏和显示table的第一列

    /*
        隐藏table的首列
        */
    td:first-child {
        display: table-cell;
    }

    th:first-child {
        display: table-cell;
    }
    /*
        隐藏table的首列
        */
    td:first-child {
        display: none;
    }

    th:first-child {
        display: none;
    }
原文地址:https://www.cnblogs.com/lijibing/p/8509266.html