10play / 10tap-editor

React Native Rich Text Editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to custom paragraph text style?

thunderfalco opened this issue · comments

I want change the paragraph style, I find that custom css document only contains how to change codeBridge style.

Hey @thunderfalco, did you check this example: https://10play.github.io/10tap-editor/docs/examples/customCss ?
you can change customCodeBlockCSS to be:


p {
    WHATEVER STYLE U WANT FOR <P>
}

Thank you, I found that I use wrong syntax, an extra : added

p : {
}

Thank you