sticky header
-
보통의 경우
header { position: fixed; top: 0 width: 100% } body { padding-top: (header-height)px; }<header> </header> <body> </body> -
in Angular
:host { padding-top: (header-height)px; } header{ position: fixed; top: 0 width: 100% }<mapia-header> <header> </header> </mapia-header> <body> </body>