I want to create a scroll bar in HTML 5 for a table so that the header is fixed.
I've already created the scroll bar for the table, but the header moves as I scroll down. I've already tried using the block: fixed command in css, but it messes up the entire table structure.
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px grey; */
  border-radius: 10px;
}
