Long Tran
Long Tran

Reputation: 83

How to properly style React Rich Text Editor (react-rte)

I want to style react-rte using a CSS file, but was unable to do so.

The RichTextEditor always injects inline styles into bottom of HEAD section, which overriden my class styling.

Upvotes: 3

Views: 5661

Answers (1)

Jonas
Jonas

Reputation: 61

Ass seen in EditorDemo.js you can define classes for toolbar and editor

<RichTextEditor
  toolbarClassName="demo-toolbar"
  editorClassName="demo-editor"
/>

Upvotes: 5

Related Questions