侧边广告横幅滚动条

发布于 2024-12-22 22:34:00 字数 211 浏览 1 评论 0原文

我有一个固定宽度的网站(例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘世孤行 2024-12-29 22:34:00

您可以使用 css 来做到这一点:

body {
    overflow-x: hidden;
}

即使视口小于内容,这也会删除页面的水平滚动条。

You can do this with css:

body {
    overflow-x: hidden;
}

This will remove horizontal scrollbar of the page even if the viewport is smaller than the content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文