当我将宽度传递给 ts 文件中的 ng2-smart-table 列时,thead 和 tbody 不匹配。
如果我从 ng2-smart-table.component.scss 文件中删除以下 css 则宽度匹配但 tbody 垂直滚动消失
tbody {
display: block;
height: 100px;
overflow: auto;
overflow-x: hidden;
}
thead,
tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}
任何人都可以帮我解决这个问题......