티스토리 뷰

🌈 Html

img 가운데 정렬

James Wetzel 2023. 9. 25. 13:31
728x90
반응형
.container {
  display: flex;
  justify-content: center;
  align-items:center;
}

With flexbox, you can set the parent container's display property to flex, and then use justify-content:center and align-items:center to horizontally and vertically align the image within its parent container.

728x90
반응형