设置样式如下
.table-scroll thead {
display: table;
width: calc( 100% - 4px );
table-layout: fixed;
}
.table-scroll tbody {
max-height: 6rem;
overflow-y: auto;
display: block;
width: 100%;
table-layout: fixed;
}
.table-scroll tr {
display: table;
table-layout: fixed;
width: 100%;
}
如果对不齐,可以调整thead 的px值(此值主要是根据你的tbody滚动条宽度设置)