如何一次显示背景图片?

时间:2018-08-07 08:17:46

标签: html css background-image photoshop

如何防止背景多次显示?

enter image description here

2 个答案:

答案 0 :(得分:1)

您需要使用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;
}

}