侧边广告横幅滚动条
我有一个固定宽度的网站(例如 1000px
),我正在考虑添加侧横幅(例如 120px
宽度),
我需要的是横幅 不添加滚动条。例如,如果访问者的分辨率为 1024x768
,我不希望广告横幅添加水平滚动条。如果他们的屏幕尺寸比内容+横幅宽,那么当然没有问题。
可以实现吗?提前致谢。
I have a fixed width website (1000px
for example) and I'm considering adding a side banner (120px
width for example)
What I need is for the banner to not add scrollbars. E.g. If a visitor has 1024x768
, I don't want the ad banner to add a horizontal scrollbar. If their screen size is wider than content+banner, then of course there is no problem.
Is it achieveable? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 css 来做到这一点:
即使视口小于内容,这也会删除页面的水平滚动条。
You can do this with css:
This will remove horizontal scrollbar of the page even if the viewport is smaller than the content.