<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>background-position定位图片</title>
<style>
body{
background-image: url("background-position.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position:center;
}
.box{
width:100px;
height:100px;
background-image: url("background-position.png");
background-repeat: no-repeat;
/*background-color: lightgoldenrodyellow;*/
background-position:51% 35%;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>