Xiao GPT

CSS 이미지 중앙 정렬 코드 알려줘 본문

코딩 GPT/코딩방

CSS 이미지 중앙 정렬 코드 알려줘

샤오 GPT 2024. 10. 12. 07:48
SMALL

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  max-height: 100%;
}

 

LIST