如何让背景图像不重复?

时间:2017-05-31 20:35:56

标签: html css html5 css3 background-image

我试图让图像在背景中显示为一个统一的图像。我究竟做错了什么?感谢。

.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; 
}

1 个答案:

答案 0 :(得分:7)

no repeat更改为no-repeat,这应该可以解决问题。