在我的網站上,右邊有不需要的白邊,我不知道爲什麼。我網站上的所有容器都包含流體,並且我還添加到了我的CSS中,沒有填充,容器沒有邊距。Css不需要的右邊距,粘腳未固定
html,
page {
width: 100%!important;
margin:0;
font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
padding-right:0px;
padding-left:0px;
color:#333;
}
container, container-fluid {
width:100%0!important;
padding:0!important;
margin:0!important;
}
我想放在頁腳在現場的時候,我試圖與位置:絕對和邊距,還試圖隱藏溢出,但它並沒有爲我工作。
<div class="navbar navbar-inverse navbottom">
.navbottom {
background: url(../img/footer.jpg) no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-color:#679003;
-moz-border-radius:0px;
border-radius: 0px;
border-style: none;
position: relative;
margin-top: -50px; /* negative value of footer height */
height: 50px;
clear:both;
padding-top:20px;
overflow:hidden;
margin-bottom:0!important;
全HTML和CSS https://jsbin.com/biwuyewipi/edit?html,css,output