這是我的頁腳,如下所示,但它沒有填滿頁面的整個寬度。我嘗試將width屬性更改為max-width,但這并沒有解決問題。我注意到我仍然可以滾動我的頁面,這是不應(yīng)該的。任何幫助都將不勝感激!
.footer {
width: 100%;
margin-top: 150px;
left: 0;
bottom: 0;
background-color: #ffe7e8;
}
嘗試在CSS代碼中添加position屬性和padding屬性,給頁腳一些空間。
.footer {
position: fixed;
width: 100%;
left: 0;
bottom: 0;
background-color: #ffe7e8;
}
我自己測試了一下,得到的也一樣。
我相信大多數(shù)瀏覽器對& ltbody & gt標(biāo)簽。
要刪除默認(rèn)應(yīng)用的填充/邊距,請在css文件中嘗試以下操作:
body {
padding: 0%;
margin: 0%;
}
不管怎樣,我解決了這個問題。
嘗試添加溢出:隱藏; 這將消除該元素的滾動條。
嘗試在代碼中添加position:fixed和right:0。也刪除寬度:100%,這將有所幫助。
.footer{
position:fixed;
margin:0;
margin-top:150px;
left:0;
right:0;
bottom:0;
background-color:#ffe7e8;
}
這段代碼對我來說很好。