使图像粘在网页底部
嘿伙计们,我有一个网页,在页面底部有一个广告,现在我希望每当用户向下滚动页面时,广告应该仅保留在底部并且也可见,就像粘性广告一样。 ...我怎样才能做到这一点?
提前致谢。
hey guys, I have a web page in which I have an ad at the bottom of the page, now I want it that whenever a user scrolls down the page the ad should remain in the bottom only and also visible, something like sticky ad.... how could I achieve this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CSS 固定定位。
您可以在 w3c 上阅读有关 CSS 定位的一般信息。请参阅http://www.w3.org/TR/CSS2/visuren。 html#fixed-positioning 特别适用于固定定位。
一个例子:
CSS Fixed positioning.
You can read about CSS positioning in general on the w3c. See http://www.w3.org/TR/CSS2/visuren.html#fixed-positioning for fixed positioning in particular.
An example:
CSS 位置:固定;
CSS 可能是一个棘手的野兽,尤其是当您将 IE 添加到其中时。
CSS Position: Fixed;
Css can be a tricky beast, especially when you add IE into the mix.