如何显示一次背景图像?

How to show background image once?

如何防止我的背景多次显示?

你需要使用background-repeat: no-repeat;

.your-target-class {
  background-image: url('your_url');
  background-repeat: no-repeat;
}

使用无重复..

.yourClass{
  background:url("./path/yourIMG") no-repeat;
}

}