css背景图片处理

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
  <div></div>
</body>
<style>
    * {
     
     
        margin: 0;
        padding: 0;
    }
   div{
     
     
       width: 500px;
       height: 500px;
       border: 1px solid black;
       background-image: url(./d043ad4bd11373f02efb63adad0f4bfbfbed043f.png);
       background-size: 100px 100px;
       background-repeat: no-repeat;
       background-position: center center
   }
</style>

</html>

猜你喜欢

转载自blog.csdn.net/x1037490413/article/details/108501081