Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 286 Bytes

img-center-align.md

File metadata and controls

15 lines (11 loc) · 286 Bytes

이미지 중앙정렬

CSS에서 이미지 중앙 정렬하기

  1. 이미지를 block 요소로 만들고 margin 값으로 중앙 정렬하기
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
  1. 이미지 상위 요소에 text-align 속성 적용