プロジェクトでCKEditorを使用しているので、ckeditorのコンテンツをページに印刷する必要があるため、ckeditorの高さを制限したいので、高さを220px overflow:hiddenを使用してスクロールバーを削除しましたが、ユーザーがckeditor領域の最後に移動してEnterキーを押すと、スクロールバーオプションなしでコンテンツが増加します。CKEDITORを使用すると自動的にコンテンツの高さが増える
ckeditorのコンテンツの行数を制限する方法はありますか?
CKEDITOR.replace('summaryEditor',
{
toolbar:
[
{ name: 'customToolBar', items: ['Bold', 'Italic', 'Underline', 'JustifyLeft', 'JustifyCenter', 'Font', 'FontSize', 'NumberedList', 'BulletedList', 'Link', 'Image', 'Table', 'Source', 'questions'] }
],
height: '220px',
resize_enabled: false,
contentsCss: 'body {overflow:hidden;}',
autoGrow_onStartup: false,
extraPlugins: 'questions',
removePlugins: 'elementspath'
});