Customize placeholder style in Blazor RichTextEditor Component
13 Dec 20211 minute to read
By using e-rte-placeholder
class, you can customize the placeholder style.
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor Placeholder="Type Something" />
<style>
.e-richtexteditor .e-rte-placeholder {
/* placeholder style */
font-family: monospace;
color: deeppink;
}
</style>