Skip to content

Instantly share code, notes, and snippets.

@StephenDRoberts
Created August 22, 2020 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StephenDRoberts/8edf27688cd7d20d792688429db2eb38 to your computer and use it in GitHub Desktop.
Save StephenDRoberts/8edf27688cd7d20d792688429db2eb38 to your computer and use it in GitHub Desktop.
CSS for scrollable table body
table {
width: 100%;
}
thead, tbody, tr {
display: table;
width: 100%;
table-layout: fixed;
}
tbody {
display: block;
overflow: auto;
table-layout: fixed;
max-height: 250px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment