0

我正在学习如何建立一个网站,但由于背景问题,我遇到了一些麻烦。

当我将内容添加到 div 容器时,背景会重复。为什么会这样,我该如何解决?

.body {
    background: url("imgs/background.jpeg")no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.main{
   background-color:rgba(255,255,255,0.9) ;
margin:25px;

}

.container{

   width:63%;
    height:auto;
    background-color:rgba(255,255,255,0.9);
    float:left;
 box-shadow: 1px 1px 1px #000, 
               3px 3px 5px grey; 
    font-family: 'Orbitron', sans-serif;
    text-shadow: 1px 1px 1px #000, 
               3px 3px 5px grey; 
    margin-bottom: 30px;

}
4

2 回答 2

0

您正在对background-image属性使用速记语法,这是错误的。您需要该background属性:

.body {
    background : url("imgs/background.jpeg") no-repeat center center fixed;
}
于 2018-05-15T21:57:13.377 回答
0

添加背景重复:不重复;身体上

有关背景图像的更多信息,请阅读链接https://www.w3schools.com/cssref/pr_background-image.asp

于 2018-05-15T21:55:18.013 回答