chichung

添加背景图片有四种常用的方式,分别是:

repeat    完全平铺

repeat-x    横向平铺

repeat-y    纵向平铺

no-repeat    不平铺

使用示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .box{
            width: 600px;
            height: 600px;
            border: 1px solid red;
            background: url("./images/QQon5.gif") no-repeat;  //在这里可以进行更改
        }
    </style>
</head>
<body>
    <div class="box"></div>
</body>
</html>

 

分类:

技术点:

相关文章:

  • 2021-10-16
  • 2021-12-22
  • 2021-12-14
  • 2021-08-25
  • 2021-08-15
  • 2021-09-25
  • 2021-09-05
猜你喜欢
  • 2021-11-24
  • 2021-12-05
  • 2021-11-24
  • 2021-12-18
  • 2021-09-17
  • 2021-11-14
相关资源
相似解决方案