經過這麼多努力,終於爲我的網站設計了頁腳。但是,無論何時我減少移動視圖中的瀏覽器大小,我的頁腳下方都會留下一個空白區域。這是因爲桌面視圖中的頁腳內容添加了頁邊空白。我也不想改變頁腳內容的排列方式。我嘗試了很多東西,但仍然無法擺脫那個空白空間。移動視圖下的頁腳空白處
HTML:
<div class="footer" style="font-family: Georgia,Serif;">
<div class="container">
<div class="col-md-4 col-sm-4">
<ul class="list-unstyled list-inline" style="margin-left:50px">
<li><a style="color:white;font-size:20px" href="AboutUs.aspx">About Us</a></li>
<li><a style="color:white;font-size:20px" href="ContactUs.aspx">Contact Us</a></li>
</ul>
</div>
<div class="col-md-4 col-sm-4">
<p style="color:white;text-align:center;font-size:15px;margin-top:48px">© 2016 Ashwini All Rights Reserved</p>
</div>
<div class="col-md-4 col-sm-4">
<ul class="social-icons icon-circle list-unstyled list-inline" style="float:right">
<li> <a href="http://www.facebook.com"><i class="fa fa-facebook"></i></a></li>
<li> <a href="http://www.twitter.com"><i class="fa fa-twitter"></i></a></li>
<li> <a href="http://www.google-plus.com"><i class="fa fa-google-plus"></i></a></li>
</ul>
</div>
</div>
</div>
CSS:
.footer {
position: absolute;
right: 0;
bottom: 0 !important;
left: 0;
padding: 1rem;
background-color: #0E0E0E;
height:100px;
}
是活?你可以發佈你的網站的鏈接嗎?... –
不,它不是。我正在爲我的項目開發它。我已經添加了圖像。 – Ash
您是否嘗試過使用'@ media'? –