Answers for "how fixed div in header on scroll"

CSS
0

fixed div with scrollable content

.fixed-content {
    overflow-y:scroll;
    overflow-x:scroll;
}
Posted by: Guest on June-05-2020
-1

css static header on scroll

table thead,
table tfoot {
  position: sticky;
}
table thead {
  inset-block-start: 0; /* "top" */
}
table tfoot {
  inset-block-end: 0; /* "bottom" */
}
Posted by: Guest on November-10-2021

Browse Popular Code Answers by Language