content" 태그를 추가하여 div를 중앙에 배치합니다. 2. div에 "margin:0 auto 속성"을 추가하여 중앙을 자동으로 조정합니다."/> content" 태그를 추가하여 div를 중앙에 배치합니다. 2. div에 "margin:0 auto 속성"을 추가하여 중앙을 자동으로 조정합니다.">

 >  기사  >  웹 프론트엔드  >  HTML에서 div를 중앙에 맞추는 방법

HTML에서 div를 중앙에 맞추는 방법

藏色散人
藏色散人원래의
2021-05-24 11:02:3337716검색

HTML에서 div를 중앙에 배치하는 방법: 1. "bacbf9e1ad7f40415ce1670e31edfee3contentadca8a5fa06ffeafb062c2e3f274b930" 태그를 추가하여 div를 중앙에 배치합니다. 2. div에 "margin:0 auto attribute;"를 추가하여 중앙을 자동으로 조정합니다. .

HTML에서 div를 중앙에 맞추는 방법

이 기사의 운영 환경: Windows7 시스템, HTML5&&CSS3 버전, Dell G3 컴퓨터.

DIV 센터링에는 두 가지 방법이 있습니다.

1. 간단하고 빠른 방법은 bacbf9e1ad7f40415ce1670e31edfee3contentadca8a5fa06ffeafb062c2e3f274b930

예:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>center居中</title>
</head>
 
<body>
<center>
<div>我要居中啦</div>
</center>
</body>
</html>

2. div에 margin:0 자동 속성을 추가하여 자동으로 조정합니다.

예 2:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>margin居中</title>
<style type="text/css">
.d1{
border:1px solid red;
width:200px;
height:200px;
text-align:center;
line-height:40px;
margin:0 auto;
}
</style>
</head>
<body>
<div class="d1">
我是div,我居中啦...
</div>
</body>
</html>

추천 튜토리얼: html 비디오 튜토리얼, css 비디오 튜토리얼

위 내용은 HTML에서 div를 중앙에 맞추는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.