[BFE.dev] 요소 가운데 배치하기

치만·2026년 2월 1일

BFE.dev CSS question

목록 보기
1/4
post-thumbnail

요소 가운데 배치하기

<div class="outer">
  <div class="inner">
</div>

inner 클래스를 가진 내부 div의 크기나 색상을 변경하지 말고, 수직 방향으로 정렬하기

1.수직 중앙 정렬이 되어야 함

2.컨테이너 크기가 변하더라도 유지


정답

.outer {
  width: 100%;
  height: 100%;
  background-color: #efefef;
  /* your code here */
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner {
  width: 100px;
  height: 100px;
  background-color: #f44336;
  /* your code here */
}
  • flex는 부모 컨테이너에 배치해야 그 하위의 자식 컴포넌트에 적용됩니다.
profile
🌱개발 기록장

0개의 댓글