Set Minimum Height CK Editor/CK Editor rows="" Not Working Fix

Arman Rahman - Sep 9 '23 - - Dev Community

When you are using ck editor then row="" attribute will not work on <textarea rows="5"> </textarea> so you can do like this.

Add this on your CSS file for adjusting minimum height of your ck editor

.ck-editor__editable {
    min-height: 350px;
}
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . .