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;
    }

 

posted @ 2018-03-05 15:34  lijibing  阅读(8480)  评论(0编辑  收藏  举报