Table headers position:sticky and border issue

前端 未结 5 946
挽巷
挽巷 2020-12-20 13:48

I have a table that I\'m trying to get sticky headers, following this article. Except my table style has the headers with a border at the top and bottom.

The part I

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-20 14:11

    Don't use border-collapse and draw the lines as follows :

    td, th {
        border-bottom: 1px solid grey;
        border-right: 1px solid grey;
    }
    
    table {
        border-spacing: 0px;
        border-left: 1px solid grey
    }
    
    th {
        background-color:#c5e8ec;
        position: sticky;
        position: -webkit-sticky;
        border-top: 1px solid grey;
        top:0;
    }
    

提交回复
热议问题