简单css实现表格头部固定

  table tbody {

    display: block;

    max-height: 270px;

    overflow-y: auto;

}

table thead,

tbody tr {

    display: table;

    width: 100%;

    table-layout: fixed;

}

你可能感兴趣的:(css,前端,javascript)