센터링은 항상 CSS의 일반적인 불만 사항이었습니다. 구현하기가 왜 그렇게 어려운가요? 그래서 누군가 비웃었습니다. 문제는 방법이 없는 것이 아니라 상황에 따라 다를 뿐이지 어떤 방법을 사용해야 하는지 파악하기 어렵다고 생각합니다.
그래서 저는 그 사람의 일이 더 쉬워지길 바라면서 이 글을 썼습니다.
가로 중심
인라인 요소(inline 또는 inline-*)를 가운데에 배치하시겠습니까?
상위 블록 수준 요소를 기준으로 가운데에 배치할 수 있습니다
.center-children { text-align: center; }
블록 수준 요소(블록 수준)가 중앙에 있습니까?
margin-left 및 margin-right를 자동으로 설정하여 중앙에 배치할 수 있습니다(또한 너비도 설정합니다. 그렇지 않으면 전체 컨테이너를 채우고 볼 수 없습니다). 센터링 효과)와 같은.
.center-me { margin: 0 auto; }
블록 수준 요소가 많으면 어떻게 되나요?
행에서 수평으로 중앙에 배치되어야 하는 매우 균일한 블록 수준 요소가 있는 경우 다른 디스플레이 유형을 사용하는 것이 좋습니다. 다음은 inline-block과 flex를 사용한 예입니다.
<main class="inline-block-center"> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> </main> <main class="flex-center"> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. </div> <div> I'm an element that is block-like with my siblings and we're centered in a row. </div> </main>rrree
세로 센터링
CSS에서는 세로 센터링이 약간 까다롭습니다
텍스트 및 링크와 같은 인라인 요소(인라인 또는 인라인-*)를 센터링합니까?
한 줄인가요? 아아아
다선인가요?
상단 및 하단과 같은 패딩 방법도 여러 줄을 중앙에 배치할 수 있지만 이 방법이 작동하지 않으면 이러한 텍스트의 컨테이너를 표 셀 모드에 표시하도록 할 수 있습니다. , 그런 다음 텍스트를 설정합니다. talbebody { background: #f06d06; font-size: 80%; } main { background: white; margin: 20px 0; padding: 10px; } main div { background: black; color: white; padding: 15px; max-width: 125px; margin: 5px; } .inline-block-center { text-align: center; } .inline-block-center div { display: inline-block; text-align: left; } .flex-center { display: flex; justify-content: center; }
.link { padding-top: 30px; padding-bottom: 30px; }
요소의 높이를 알고 계시나요?
여러 가지 이유로 웹페이지 레이아웃의 높이를 모르는 경우가 많습니다.
그러나 레이아웃의 높이가 고정된 경우 다음과 같이 세로로 가운데에 배치할 수 있습니다.
.center-text-trick { height: 100px; line-height: 100px; white-space: nowrap; }
요소의 높이를 알 수 없습니다
알 수 없지만 너비를 50%까지 늘릴 수는 있습니다rree
flexbox를 사용할 수 있나요?
<table> <tr> <td> I'm vertically centered multiple lines of text in a real table cell. </td> </tr> </table> <div class="center-table"> <p>I'm vertically centered multiple lines of text in a CSS-created table layout.</p> </div>
body { background: #f06d06; font-size: 80%; } table { background: white; width: 240px; border-collapse: separate; margin: 20px; height: 250px; } table td { background: black; color: white; padding: 20px; border: 10px solid white; /* default is vertical-align: middle; */ } .center-table { display: table; height: 250px; background: white; width: 240px; margin: 20px; } .center-table p { display: table-cell; margin: 0; background: black; color: white; padding: 20px; border: 10px solid white; vertical-align: middle; }
요소의 너비와 높이가 고정되어 있습니다
.parent { position: relative; } .child { position: absolute; top: 50%; height: 100px; margin-top: -50px; /* 如果没有使用: border-box; 的盒子模型则需要设置这个 */ }
.parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); }