헤더 고정하기, 페이지 초반이 헤더에 가려졌을 때
다음은 현재 제작 중인 랜딩 페이지의 일부이다. 여느 페이지가 그러하듯 헤더는 대체로 스크롤을 해도 상단을 유지한다. 이는 position 속성에 fixed를 주었기 때문에 가능한 것이다. .status_bar { position: fixed; display: flex; flex-direction: row; align-items: center; justify-content: space-between; height: 11%; width: 100%; background-color: rgba(255, 255, 255, 0.8); border-bottom: 1px outset rgb(199, 192, 192, 0.5); z-index: 100; } 그런데 여기서 주의할 점은 html의 처음 정보가 헤더 아래에 ..