Fixed Table Header using CSS

前端 未结 3 1641
离开以前
离开以前 2021-01-21 18:05

How to have a fix thead at the top? I tried the below script but it didn\'t fixed on scrolling.

3条回答
  •  甜味超标
    2021-01-21 18:40

    table {
       width: 100% (or the preferred value);
    }
    
    thead {
        position: fixed;
        top: 0;
        background: khaki;
        color: white;
        width: 100%;
    }
    

提交回复
热议问题