Answers for "fixed table horizontal scrollbar css"

0

set scroll bar on a table

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

table scroll horizontal

<div style="overflow-x:auto;">
  <table>
    ...
</table>
</div>
Posted by: Guest on August-07-2021

Code answers related to "fixed table horizontal scrollbar css"

Browse Popular Code Answers by Language