Como fazer o cabeçalho sempre no topo em html
#header {
position: sticky; /*(recomended)*/
top: 0px;
position: fixed;
}
Coder.html
#header {
position: sticky; /*(recomended)*/
top: 0px;
position: fixed;
}
#header {
position: fixed;
}
#content {
margin-top: 100px;
}