div를 중앙에 두는 것은 가장 불가능한 일입니다.
Flexbox는 콘텐츠를 수직 및 수평으로 중앙에 배치하는 현대적인 방법입니다.
.container { display: flex; justify-content: center; align-items: center; height: 100vh; }
Centered Content
CSS 그리드는 콘텐츠를 중앙에 둘 수도 있습니다.
.container { display: grid; place-items: center; height: 100vh; }
Centered Content
절대 위치 지정을 사용하여 div를 중앙에 배치할 수 있습니다.
.container { position: relative; height: 100vh; } .centered-div { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
Centered Content
간단한 수평 센터링의 경우 margin: auto:
를 사용하세요.
.centered-div { width: 50%; margin: 0 auto; }
Centered Content
인라인 또는 인라인 블록 요소의 경우:
.container { text-align: center; line-height: 100vh; } .centered-div { display: inline-block; vertical-align: middle; line-height: normal; }
Centered Content
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3