您好,登錄后才能下訂單哦!
平時(shí)寫布局的時(shí)候要保證頭部標(biāo)題或者橫向的菜單和主體內(nèi)容居中,可以將定義一個(gè)樣式,比如:
<style>
.container{
width: 980px;
margin: 0 auto;
}
</style>
頭部和主體部分樣式都放在帶有該樣式的標(biāo)簽里:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
body{
margin: 0 auto;
//解決body邊框問題
}
.header{
height: 48px;
background-color: red;
}
.body{
background-color: #dddddd;
}
.container{
width: 980px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<a>頭部內(nèi)容</a>
</div>
</div>
<div class="body">
<div class="container">
<p>主干內(nèi)容</p>
<p>主干內(nèi)容</p>
<p>主干內(nèi)容</p>
<p>主干內(nèi)容</p>
</div>
</div>
<div class="footer"></div>
</body>
</html>
顯示效果:
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。