347 B
347 B
| title | date | permalink | categories | tags | author | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CSS给table的tbody添加滚动条 | 2022-06-29 09:34:23 | /pages/55f894/ |
|
|
table tbody {
height: 200px;
overflow-y: auto;
display: block;
}
table thead,
tbody tr {
display: table;
width: 100%;
}