最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - In CKEditor, how do I always turn scrollbars on? - Stack Overflow

matteradmin4PV0评论

When editing inside CKEditor, I always want the scrollbars to be shown. Is there a way to override the CSS to always show the scrollbars, even if there's nothing lower filling it up?

When editing inside CKEditor, I always want the scrollbars to be shown. Is there a way to override the CSS to always show the scrollbars, even if there's nothing lower filling it up?

Share Improve this question asked Feb 3, 2012 at 13:04 TIMEXTIMEX 273k368 gold badges802 silver badges1.1k bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

it should be achievable using CSS.

I have a tool using the CKEditor and I see the body tag of the iframe in which the content is edited has a class .cke_show_borders.

So you can do:

.cke_show_borders {
    overflow: scroll;
}

Or to have more detailed control over the vertical/horizontal scrollbars

.cke_show_borders {
    overflow-y: scroll; // vertical scrollbar
    overflow-x: scroll; // horizontal scrollbar
}
Post a comment

comment list (0)

  1. No comments so far