DEV Community

Arman Rahman
Arman Rahman

Posted on • Updated on

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

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

Top comments (3)

Collapse
 
mrinasugosh profile image
Mrinalini Sugosh (Mrina)

@armanrahman Would you like to contribute this fix to our official CKEditor DevTo dev.to/ckeditor?

Collapse
 
armanrahman profile image
Arman Rahman • Edited

Sure.. Could you please guide me?

Collapse
 
mrinasugosh profile image
Mrinalini Sugosh (Mrina)