前端 背景圖片


背景圖片

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>背景圖片</title>
    <style>
        .box {
            width: 300px;
            height: 300px;
            background-color: orangered;
        }

        .box {
            /*顯示比屏幕大的圖片:縮放尺寸*/
            /*background-image: url("img/kj.gif");*/
            /*盡量只設置寬,高等比縮放,不失真*/
            /*background-size: 300px 300px;*/
        }

        .box {
            /*顯示比屏幕小的圖片:處理平鋪與位置*/
            background-image: url("img/lss.jpg");
            /*平鋪: repeat-x repeat-y repeat no-repeat*/
            background-repeat: no-repeat;
            /*位置*/
            /*1.只設置x軸,y軸默認center*/
            /*2.x軸:left center right 具體像素 百分百*/
            /*2.y軸:top center bottom 具體像素 百分百*/
            background-position: center center;
        }
    </style>
</head>
<body>
    <div class="box"></div>
</body>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM