Answers for "how to keep the header at the top of the page in css"

CSS
0

html how to ensure that the header always on top

#header {
  position: fixed;
}

#content {
  margin-top: 100px;
}
Posted by: Guest on July-18-2020

Code answers related to "how to keep the header at the top of the page in css"

Browse Popular Code Answers by Language