其他分享
首页 > 其他分享> > 040.背景图像应用及渐变

040.背景图像应用及渐变

作者:互联网

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>2021-12-7</title>
        <style type="text/css">
        /*
        background: 颜色  图片 图片位置(270px   10px)  平铺方式
        
        
        */
            div{
                width: 1000px;
                height: 700px;
                border: 1px solid red;
                background-image: url(../image/pdd_logo_v2.png);/*默认是全部平铺的*/
            }
            
            .div1{
                background-repeat: repeat-x;
            }
            .div2{
                background-repeat: repeat-y;
            }
            .div3{
                background-repeat: no-repeat;
            }
        </style>
    </head>
    <body>
        <div class="div1">
            
        </div>
        <div class="div2">
            
        </div>
        <div class="div3">
            
        </div>
    </body>
</html>

 

标签:平铺,repeat,渐变,height,background,图像,图片,image,040
来源: https://www.cnblogs.com/LLL0617/p/15652762.html