본문 바로가기
기타

ckeditor5 - 높이설정

by zgabriel 2024. 8. 5.
728x90

에디터의 높이를 설정하는 방법

}).then(function(editor) {

//높이를 480으로 지정 - 높이고정

//입력이 480을 넘으면 스크롤이 생김

$('style').append('.ck-content { height: 480px; }');

objEditor = editor;

//최소 높이를 480으로 지정 - 높이 가변

//입력이 480을 넘으면 높이가 늘어남

$('style').append('.ck-content { min-height: 480px; }');

}).catch( error => { console.log( error ); } );

 

 

반응형