vuepress-theme-vdoing/docs/02.页面/20.CSS/70.CSS给table的tbody添加滚动条.md

347 B

title date permalink categories tags author
CSS给table的tbody添加滚动条 2022-06-29 09:34:23 /pages/55f894/
页面
CSS
name link
xugaoyi https://github.com/xugaoyi
table tbody {
  height: 200px;
  overflow-y: auto;
  display: block;
}

table thead,
tbody tr {
  display: table;
  width: 100%;
}