<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>背景</title>
<style>
#p1{
background-color: blueviolet;
}
#p2{
background-image: url("logo.png");
width: 500px;
height: 320px;
}
#p3{
background-image: url("logo.png");
width: 90px;
height: 90px;
background-position: -60px,-80px;
}
body{
background-image: url("logo.png");
background-repeat: no-repeat;
background-repeat: repeat-x;
}
</style>
</head>
<body>
<p id="p1">段落内容</p>
<p id="p2">hah</p>
<p id="p3"></p>
</body>
</html>