I am using a ckEditor and looking for a way to make its height automatically grow as I type.
https://i.stack.imgur.com/m7eyi.png
<textarea name="description" id="description">
</textarea>
<script>
CKEDITOR.replace( 'description' );
CKEDITOR.config.contentsCss = [CKEDITOR.getUrl('contents.css'), CKEDITOR.getUrl('/js/ckeditor/skins/moono-dark/styles.css')];
</script>
Is there any way to achieve this with JS or CSS?