让我的页脚停留在我的页面底部但只在iPhone移动版Safari(iOS6)上有些麻烦。使用position:fixed
在iPad和桌面版本上完美运行。我已经在互联网上寻找解决方案,但我尝试过的任何东西似乎都没有用。如果我将其更改为position:relative
,它在iPhone上显示正常,但在其他浏览器版本上却过高。我的代码是:
#footer {
padding-top: 15px;
padding-bottom: 5px;
width: 100%;
height: 50px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
font-size: 10px;
color: #fff;
text-align: center;
text-shadow: 2px 0px 5px #000;
position: fixed;
bottom: 0;
}
<div id="footer">
<ul>
<li><a href="Index.html">Home</a></li>
<li><a href="Assessment.html" target="_blank">Assessment</a></li>
<li><a href="Press.html">Press</a></li>
<li><a href="Careers.html">Careers</a></li>
<li><a href="News.html">News</a></li>
<li><a href="Contact.html" target="_blank">Contact</a></li>
<li><a href="https://www.facebook.com/pages/Southern-Cross-Catholic-College-Japanese/164793893570872" target="_blank">Facebook</a></li>
<li><a href="http://www.sccc.qld.edu.au">SCCC Home</a></li>
<li><a href="#top">Top</a></li>
</ul>
<p class="fine-print">Created by Maree Carr. © 2014 scccjapan.com. All rights reserved.</p></div>
提前致谢:)
答案 0 :(得分:-1)
一切都好!在这里找到答案:cssreset.com/how-to-keep-footer-at-bottom-of-page-with-css。为什么我不能在一天前发现!!