React

[react, css] 헤더만들기

재키재키 2022. 2. 18. 17:20

- position : sticiky, top:0 을 통해 항상 위에 붙어있게 할 수 있고

- z-index : 1 을 통해 항상 가장 앞에 있는 요소로 고정시킬 수 있다.!!

const Container = styled.header`
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;
  border-bottom: 2px solid ${COLORS.PRIMARY};
  min-width: ${SIZES.HEADER_MIN_WIDTH};
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
`;