html怎樣讓div居中

藏色散人
發布: 2023-01-06 11:15:09
原創
37728 人瀏覽過

html讓div居中的方法:1、加上「

內容
」標籤讓div居中;2、在div中加入「margin:0 auto屬性;」自動調節居中。

html怎樣讓div居中

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

DIV居中提供兩個方法:

1、簡單快速方法就是加

內容
標籤。

範例:

<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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!