创建可变宽度带有可选滚动条的元素
我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
overflow
CSS 属性应用于有问题的div
:这定义了溢出元素内容区域的内容会发生什么情况。对于值滚动,用户代理应该提供滚动机制,无论是否实际需要;因此,例如,即使所有内容都可以容纳在元素框中,滚动条也会出现。
您可以在此处尝试一些示例。
希望有帮助。
You can apply the
overflow
CSS property to the problematicdiv
: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.