Answers for "make page header stay at top html"

CSS
0

how to make header always on top in html

#header {
	position: sticky; /*(recomended)*/
    top: 0px;
    position: fixed; 
}
Posted by: Guest on November-06-2021
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 "make page header stay at top html"

Browse Popular Code Answers by Language