-1

I have a table that has a set height & am trying to get the horizontal scroll bar to remain sticky (fixed) to the bottom of the page when scrolling vertically - is there anyway I can achieve this? Either pure CSS or involving JS

codfish555
  • 96
  • 1
  • 15

1 Answers1

0

Try this css

.scrolling {
  height: 30px;
  margin-top: -30px;
}
rishi
  • 643
  • 5
  • 21