溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

布局小竅門之----讓頭部和主干內(nèi)容居中

發(fā)布時(shí)間:2020-07-09 00:25:56 來源:網(wǎng)絡(luò) 閱讀:460 作者:027ryan 欄目:開發(fā)技術(shù)

平時(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>

顯示效果:

布局小竅門之----讓頭部和主干內(nèi)容居中

向AI問一下細(xì)節(jié)

免責(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)容。

AI