跳至主要內容

CSS给table的tbody添加滚动条

Mr.Chen页面CSS小于 1 分钟约 40 字

table tbody {
  height: 200px;
  overflow-y: auto;
  display: block;
}

table thead,
tbody tr {
  display: table;
  width: 100%;
}
上次编辑于: