Answers for "table enable scrollbar in html table"

CSS
1

set scroll bar on a table

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

Code answers related to "table enable scrollbar in html table"

Browse Popular Code Answers by Language