table 固定标题

//将 table thead,table tbody tr {
display:table;
table-layout:fixed 设置列宽
 display:table 设置子元素宽度
width:100%;
}
// calculate(计算) calc属性可以动态计算宽高,可使用%,px,rem等作为单位,可进行加减乘除运算
table thead{
      width: calc(100%-1px);
}
//设置固定高度,超出设置高度内容y轴滚动
table tbody {
display:block;
heigth:100px;
   overflow-y: scroll;
}

你可能感兴趣的:(table 固定标题)