首頁 > web前端 > css教學 > CSS背景設定

CSS背景設定

无忌哥哥
發布: 2018-06-28 17:37:15
原創
1572 人瀏覽過

背景設定的五個樣式規則

    1. 背景顏色: background-color

    2. 背景圖片: background-image

    3.背景圖片的重複方式: background-repeat

    4. 背景圖片的定位方式: background-position

    5. 背景圖片的是否固定: background-attachment

    6. 背景圖片大小設定: background-size

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>2.CSS背景设置</title>
    <style>
        body {
            background-color: lightcyan;
background-image: url(../images/bg/sky3-1.png);
background-repeat: no-repeat;
background-attachment:fixed;
background-size: cover;
        }
        div {
            width: 300px;
            height: 200px;
            line-height: 100px;
            text-align: center;
            background-color: aquamarine;
            /*可以通过js等方式来设置背景色透明*/
            /*background-color: transparent;*/
            border: 1px solid #363636;
        }
    </style>
</head>
<body>
    <div>
        <h2>PHP中文网 (<a href="">www.php.cn</a>)</h2>
    </div>
</body>
</html>
登入後複製

以上是CSS背景設定的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板