css:布局问题

发布于 2024-11-27 11:52:17 字数 155 浏览 1 评论 0原文

我有一个 css 布局,其中我有一个单页网站,

问题是我不想要滚动条,所以我隐藏了溢出,它工作正常,但是当屏幕分辨率不同时,底部的内容被切断了。解决这个问题的任何方法

我的意思是,当内容适合第一页时,网站不应该有滚动条,但当没有足够的空间容纳内容时,应该出现滚动条

I have a css layout where in I have a single page website

the problem is I did not want the scrollbar so i did overflow hidden and the it worked fine but when there is different screen resolution, so content in the bottom is cut off is there any way to work around this

I mean the website should not have a scrollbar when the things fit on the first page but then when there is not enough room for the content the scrollbar should appear

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

凉宸 2024-12-04 11:52:17

您可以使用 overflow:auto; 来代替。
我的建议是对您的主体(或主容器)使用固定宽度和最小高度
这样浏览器将在需要时添加自己的滚动条。您可以在这里阅读有关固定宽度的信息 http://webdesign.about.com/od/ css/ht/htcsscenterfix.htm

You can use overflow:auto; instead.
My recommendation is to use fixed width and minimum height to your body (or main container)
that way the browser will add is own scrolls if needed. you can read about fixed width here http://webdesign.about.com/od/css/ht/htcsscenterfix.htm

请止步禁区 2024-12-04 11:52:17

您需要 overflow:auto; 而不是 overflow:hidden;

overflow:auto; 将在需要时返回滚动条,而在不需要时则不会返回。

You want overflow:auto; not overflow:hidden;.

overflow:auto; will return a scrollbar when needed, and won't when it isn't.

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