CSS学习07:背景平铺

本文详细介绍了CSS中background-repeat属性的四种取值:repeat、no-repeat、repeat-x和repeat-y,分别对应背景图片在纵横向上、不、横向和纵向的平铺方式,并通过示例代码展示了每种方式的效果,帮助开发者更好地理解和应用这些平铺方式。
摘要由CSDN通过智能技术生成

目录

使用方法:

repeat

 no-repeat

 repeat-x

 repeat-y


使用方法:

background-repeat: repeat | no-repeat | repeat-x | repeat-y

参数值作用
repeat背景图片在纵向和横向上平铺(默认)
no-repeat背景图片不平铺
repeat-x背景图片在横向上平铺
repeat-y背景图片在纵向上平铺

 


repeat

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div {
            /* 默认repeat平铺 */    
            width: 500px;
            height: 500px;
            background-color: #ccc;
            background-image: url(./images/logo.png);
        }
    </style>
</head>
<body>
    
     <div>

     </div>
</body>
</html>

 


 no-repeat

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div {
            width: 500px;
            height: 500px;
            background-color: #ccc;
            background-image: url(./images/logo.png);
            /* no-repeat 不平铺  用的最多*/
            background-repeat: no-repeat;
        }
    </style>
</head>
<body>
    
     <div>

     </div>
</body>
</html>

 


 repeat-x

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div {
            width: 500px;
            height: 500px;
            background-color: #ccc;
            background-image: url(./images/logo.png);
            /* 水平方向上平铺 */
            background-repeat: repeat-x;
        }
    </style>
</head>
<body>
    
     <div>

     </div>
</body>
</html>

 


 repeat-y

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div {
            width: 500px;
            height: 500px;
            background-color: #ccc;
            background-image: url(./images/logo.png);
             /* 垂直方向上平铺 */
            background-repeat: repeat-y;
        }
    </style>
</head>
<body>
    
     <div>

     </div>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值