DIV 상자를 화면 중앙에 맞추는 방법: CSS 속성 text-align: center; margin: auto;를 사용하세요. flexbox의 디스플레이를 사용하세요: flex; justify-content: center; 절대 위치 지정 사용: 절대; 왼쪽: 50%; 변환: 변환(-50%, -50%);.
DIV 상자를 화면 중앙에 배치하는 방법
방법 1: CSS 속성
HTML 코드:
<code class="html"><div style="text-align: center; margin: auto;"> 您的内容在此 </div></code>
방법 2: flexbox
HTML 코드:
<code class="html"><div style="display: flex; justify-content: center; align-items: center;"> 您的内容在此 </div></code>
방법 3: 절대 위치 지정
HTML 코드:
<code class="html"><div style="position: absolute; left: 50%; transform: translate(-50%, -50%);"> 您的内容在此 </div></code>
추가 참고 사항:
위 내용은 HTML에서 화면 중앙에 div 상자를 중앙에 배치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!