我正在学习如何建立一个网站,但由于背景问题,我遇到了一些麻烦。
当我将内容添加到 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;
}