CSS 溢出:隐藏它但保持其中的文本可选

发布于 2024-11-24 01:17:30 字数 64 浏览 0 评论 0原文

基本上,我需要溢出的行为像“自动”,但隐藏滚动条。

如果我使用“隐藏”,我无法选择超出限制的文本。

Basically, I need the overflow to behave like "auto", but hiding the scrollbar.

If I use "hidden" I cannot select the text beyond the limit.

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

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

发布评论

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

评论(1

那一片橙海, 2024-12-01 01:17:30

尝试将类似的内容应用于您想要通过滚动控制的 DIV。

#foo {
 height: 100px;
 overflow-y; scroll;
 overflow-x: hidden;
 }

如果你真的想隐藏滚动条,那么用JS或CSS替换为空白图像?

try using something like this applied to the DIV that you want to control with scrolling.

#foo {
 height: 100px;
 overflow-y; scroll;
 overflow-x: hidden;
 }

If you really want to hide the scrollbar, then replace it with JS or CSS for a blank image?

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