使用滚动条使内容高度为 100%

发布于 2024-08-26 08:12:49 字数 471 浏览 4 评论 0原文

我正在使用 CKEditor (http://ckeditor.com),并且我创建了自己的自定义文件浏览器...

问题是,当您打开文件浏览器时,它会在新的弹出窗口中打开它,并且没有滚动条。我两周前提交了一份支持票,以了解如何添加滚动条,但没有得到答复。我也找不到要在代码中编辑的内容...

所以我计划做的是使用 CSS 使其滚动...

我发现这篇关于使正文 100% 的文章 (边框围绕 100% 正文高度和宽度(HTML 4.01 严格)),但是它不添加滚动条。

有什么想法可以使用 CSS 强制滚动条吗?

I am using CKEditor (http://ckeditor.com) and I've created my own custom file browser...

Problem is, when you open the filebrowser, it opens it in a new popup window and has no scrollbars. I submitted a support ticket 2 weeks ago to find out how to add the scrollbars and no answer. I can't find what to edit in the code either...

So what I plan to do is make it scroll using CSS...

I found this post about making the body 100% (Border around 100% body height and width (HTML 4.01 Strict)) but it doesn't add scrollbars.

Any ideas how I can force scrollbars using CSS?

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

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

发布评论

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

评论(1

审判长 2024-09-02 08:12:49

在具有固定高度/宽度的元素上,应添加滚动条:

overflow:auto;

http://www .w3.org/TR/CSS21/visufx.html#overflow

http:// www.w3schools.com/Css/pr_pos_overflow.asp

On elements with fixed height/width, this should add scrollbars:

overflow:auto;

http://www.w3.org/TR/CSS21/visufx.html#overflow

http://www.w3schools.com/Css/pr_pos_overflow.asp

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