在我的Rails應用程序中,我使用的是Twitter Bootstrap
。我的頁腳正確顯示在具有足夠寬度的橫向模式的屏幕上。
下面是它的外觀:
Responsive CSS with Twitter Bootstrap
但是,對我的Android Galaxy Note的瀏覽器,它的出現打破。如果我在橫向模式下使用瀏覽器,則頁腳顯示正確,但在縱向模式下,頁腳會中斷。它看起來像:
這裏是我的代碼:
<div id="footer">
<div class="container">
<p class="muted credit" style="text-align: center" >
© 2013 <a href="http://www.example.com">WebsiteName.com</a> All Rights Reserved. |
<a href="" title="Privacy Policy">Privacy Policy</a> |
<%= link_to 'Terms of Service', terms_of_service_path %>
</p>
</div>
</div>
對於上述被借的CSS從Example - sticky-footer:
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
width: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -60px;
position: fixed;
left:0;
top:0;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 60px;
}
#footer {
background-color: #f5f5f5;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
.container .credit {
margin: 20px 0;
}
我不知道爲什麼它不會令它正確。我是新來的響應CSS和我正在學習。請讓我知道什麼是錯的。
JSF好嗎? –
看起來您的頁腳不適合您筆記的可用空間。那麼,您希望自己的設計如何應對更小的空間? – KatieK
@KatieK:我希望隱私政策和服務條款在另一行的版權下方顯示。 –