我目前正在开发的一个网站在页脚方面工作得很好,但是在 iPad 的 Safari 上查看该网站时,页脚在页面底部上方错位了很多,经过一个小时的反复试验,我'我没有快速到达任何地方。我希望有人遇到这个问题,也许可以通过解释你为解决问题所做的工作来帮助我。
这是我的 HTML 的基本标记。
<html>
<body>
<form>
<iframe></iframe> <!-- This is where the different pages are set -->
</form>
<footer>
</footer>
</body>
</html>
这是CSS
html,
body {
margin:0;
padding:0;
height:100%;
}
.footer {
position:absolute;
bottom:0;
width:100%;
height:40px; /* Height of the footer */
background:#6d8085;
}
铬合金
iPad
非常感谢您的帮助!