admin管理员组文章数量:1344923
I have a CKeditor which is placed in a parent div. What is the best way to have the CKEditor exactly fit the div and resize when the div resizes? If possible I would prefer solutions which don't involve jQuery. If this is not possible solutions using jQuery would be fine to.
I have a CKeditor which is placed in a parent div. What is the best way to have the CKEditor exactly fit the div and resize when the div resizes? If possible I would prefer solutions which don't involve jQuery. If this is not possible solutions using jQuery would be fine to.
Share Improve this question edited Mar 23, 2021 at 0:28 Jason Aller 3,65228 gold badges41 silver badges39 bronze badges asked Jan 4, 2013 at 10:28 user1257239user12572393 Answers
Reset to default 6var editor = CKEDITOR.replace( 'editor' );
...
And then, in event of your choice, do this:
editor.resize($("#elem").width(),$("#elem").height());
Hope this helped.
Use the width attribute when you call ckeditor.
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'page_content',
{
toolbar : 'MyToolbar',
width : '100%'
});
//]]>
</script>
Since the call to initialize the editor is done with jquery, this is the best way.
edit: This will cause ckeditor to auto-resize when the div width changes as well.
If someone needs this now, I added this to my css file:
#cke_id_text {
width: fit-content!important;
}
本文标签: javascriptHow to resize CKEditor to fit its parent divStack Overflow
版权声明:本文标题:javascript - How to resize CKEditor to fit its parent div - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782003a2538003.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论