Answers for "sticky header and footer html css"

CSS
13

sticky header css

nav {
    position: sticky; top: 0;
}
Posted by: Guest on September-19-2021
0

fixed header and footer css

.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -4em;
  overflow-y: scroll;
}
.footer {
  bottom: 0;
  height: 4em;
  position: fixed;
}
.header {
  top: 0%;
  height: 4em;
  position: fixed;
}
Posted by: Guest on March-10-2022

Browse Popular Code Answers by Language