TIL

Sticky Header

2019.12.111분 읽기

  1. 보통의 경우

    header {
    	position: fixed;
    	top: 0
    	width: 100%
    }
     
    body {
    	padding-top: (header-height)px;
    }
    <header>
    </header>
    <body>
    </body>
  2. in Angular

    :host {
    	padding-top: (header-height)px;
    }
     
    header{
    	position: fixed;
    	top: 0
    	width: 100%
    }
    <mapia-header>
    	<header>
    	</header>
    </mapia-header>
    <body>
    </body>

관련 포스트

Giscus 댓글 영역 (GitHub Discussions 연동 예정)