我试图让图像在背景中显示为一个统一的图像。我究竟做错了什么?感谢。
.content{
background-color: gray;
top: 0;
position: relative;
background-size: cover;
left: 0;
right: 0;
bottom: 0;
background:url(cropped.jpg);
background-repeat: no repeat;
}
答案 0 :(得分:7)
将no repeat
更改为no-repeat
,这应该可以解决问题。