标签: html css background-image photoshop
如何防止背景多次显示?
答案 0 :(得分:1)
您需要使用background-repeat: no-repeat;
background-repeat: no-repeat;
.your-target-class { background-image: url('your_url'); background-repeat: no-repeat; }
答案 1 :(得分:0)
不重复。.
.yourClass{ background:url("./path/yourIMG") no-repeat; }
}