I implemented the ckeditor control in my SPFX react webpart but i want to set fixed height and width for control how to set it?
<CKEditorid="ckeditMoreInfo"
editor={ClassicEditor}
data={item.APMEMoreInfo}
onInit={editor=> {
// You can store the "editor" and use when it is needed.
console.log('Editor is ready to use!',editor);
self.setState({
APMEMoreInfoData:
item.APMEMoreInfo
});
}}
config={editorConfiguration
}
onChange={(event,editor) => {
self.setState({
APMEMoreInfoData:
editor.getData()
});
}}
/>