首頁  >  文章  >  web前端  >  html怎樣讓div居中

html怎樣讓div居中

藏色散人
藏色散人原創
2021-05-24 11:02:3337716瀏覽

html讓div居中的方法:1、加上「bacbf9e1ad7f40415ce1670e31edfee3內容adca8a5fa06ffeafb062c2e3f274b930」標籤讓div居中;2、在div中加入「margin:0 auto屬性;」自動調節居中。

html怎樣讓div居中

本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。

DIV居中提供兩個方法:

1、簡單快速方法就是加bacbf9e1ad7f40415ce1670e31edfee3內容adca8a5fa06ffeafb062c2e3f274b930標籤。

範例:

<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 auto屬性;自動調節居中。

範例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