css背景图片重复:
解决方案添加代码 background-repeat: no-repeat;
例如:
<style>
div {
width: 730px;
height: 880px;
background-image: url(First.jpg);
background-repeat: no-repeat; 添加这行代码即可
}
</style>
background-repeat的拓展: