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

When editing inside CKEditor, I always want the scrollbars to be shown. Is there a way to override the

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
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745616835a4636285.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信