Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to set custom style in html #277

Open
callmeguaishu opened this issue Jan 17, 2023 · 1 comment
Open

how to set custom style in html #277

callmeguaishu opened this issue Jan 17, 2023 · 1 comment

Comments

@callmeguaishu
Copy link

callmeguaishu commented Jan 17, 2023

const text = useRef('<p style={{color:'red'}}>123</p>'); const handleChange = evt => { text.current = evt.target.value; }; const handleBlur = () => { console.log(text.current); }; return <ContentEditable html={text.current} onBlur={handleBlur} onChange={handleChange} />

when I try to set custom style for html content, the 'style={{color:'red'}}' don't work, is that a bug ? what should I do?

@alikhani-dev
Copy link

Hi,
you must write HTML tag because render with dangerouslySetInnerHTML.
const text = <p style='color:red'>123</p>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants