1

我想在页面底部放置一个小标签用于联系我们——它应该随着页面滚动而滚动,并且应该在旧版本的 IE 中也能工作,比如 IE 5.0。请参阅 http://www.goshti.com/testcode.html上的页面

有关如何解决此问题的任何建议。我的 CSS 或 Javascript 解决方案都很好。

4

2 回答 2

1

您可以position:fixed在元素上使用。

<body>
    <div class="tab">
        <a href="/contact-us">Contact Us</a>
    </div>

CSS:

.tab {
    position: fixed;
    bottom: 0px;
    right: 0px;
}
于 2013-10-04T03:40:52.553 回答
0

您是否尝试过位置:固定?我不确定它是否适用于旧版浏览器。

您可以将栏包裹在相对 div 中

#page-wrap { 
margin: 15px auto; 
position: relative; 
}

#bar {
position: fixed; 
bottom: 0px;
right: 0px;
}
于 2013-10-04T03:47:09.230 回答