Fix First Column of a Bootstrap Table

后端 未结 4 947
忘掉有多难
忘掉有多难 2020-12-02 20:53

I followed @koala_dev\'s code in this post to try to lock the first column s my table scrolls horizontally. The code unfortunately has no effect on my table. I was wondering

4条回答
  •  伪装坚强ぢ
    2020-12-02 21:15

    The following style will create a stripped table with the first column fixed:

    th:first-child, td:first-child{
        position: sticky;
        left: 0px;
        z-index: 1;
    }
    tr:nth-child(odd) > td{
        background-color: #ededed;
    }
    tr:nth-child(even) > td{
        background-color: #e2e2e2;
    }
    tr:nth-child(odd) > th{
        background-color: #d7d7d7;
    }
    

提交回复
热议问题