Answer:
We can set the min-height of the Rich Text Editor for one-row height using the CSS. Check the below code blocks for reference.
@using Syncfusion.Blazor.RichTextEditor <SfRichTextEditor CssClass="no_content"> <RichTextEditorToolbarSettings Enable="false">RichTextEditorToolbarSettings> SfRichTextEditor> <style> .no_content.e-richtexteditor .e-rte-content .e-content { /*Can set your desired height*/ min-height: 35px; padding: 5px; }
style> |