所以我正在开发一个移动网站,我遇到了一个问题,即在一个部分上方弹出一条随机线。我无法真正测试它,因为该行没有出现在桌面上。我正在使用带有 ICS 的全新 Android 手机,并且我也在其他几部手机上对其进行了测试。
我的 HTML 结构是:
<footer>
<div class="footer-top">
</div>
<div class="footer-main">
</div>
</footer>
我对这些部分的 CSS 是:
footer { margin-top: -18px; position: relative; z-index: 100; }
.footer-top { background: url(../images/footer-top.png) repeat center top; height: 35px; text-align: center; }
.footer-main { background: url(../images/footer_bg.jpg) repeat center; padding-bottom: 30px;}
我只是找不到那条线出现的原因。有没有其他人遇到过这样的问题?