Answers for "scroll table cell"

CSS
0

set scroll bar on a table

table {
  display: block;
  height: 500px;
  overflow-y: scroll;
}
Posted by: Guest on September-20-2021
0

scrollable table vertical

thead, tbody { display: block; }

tbody {
    height: 100px;       /* Just for the demo          */
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}
Posted by: Guest on November-23-2021

Browse Popular Code Answers by Language