创建可变宽度
带有可选滚动条的元素

发布于 2024-11-30 12:49:19 字数 130 浏览 1 评论 0原文

我想将 div 添加到我的网站,它具有可变宽度,并且当宽度小于最长的行时它将显示滚动条。 我尝试用可变宽度(100%)包装这样一个固定宽度的元素,但这不起作用。我在整个页面上都有滚动条。

有什么想法吗?

谢谢 亚龙

I want to add div to my website which has variable width, and that it will display scroll bars when the width is smaller than the longest line.
I tried wrapping such a fixed width element, in a variable width (100%) but that didn't work. I got the scroll bars on the entire page.

Any thoughts?

Thanks
Yaron

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

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

发布评论

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

评论(1

温暖的光 2024-12-07 12:49:19

您可以将 overflow CSS 属性应用于有问题的 div

#problematic-div {
    overflow: hidden;
}

这定义了溢出元素内容区域的内容会发生什么情况。对于值滚动,用户代理应该提供滚动机制,无论是否实际需要;因此,例如,即使所有内容都可以容纳在元素框中,滚动条也会出现。

您可以在此处尝试一些示例。

希望有帮助。

You can apply the overflow CSS property to the problematic div:

#problematic-div {
    overflow: hidden;
}

This defines what happens to content that overflows the content area of an element. For the value scroll, user agents are supposed to provide a scrolling mechanism whether or not it is actually needed; thus, for example, scrollbars would appear even if all content can fit within the element box.

You can try some examples here.

Hope it helps.

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