I have a text editor input using quill that outputs html
Below the text editor i want to create a preview section so the user can see how the text is going to look like,
I created a div preview-content that puts the text editor output using innerHTML
When i tested it i found that the preview will one way or another inherit styling from my app whether it's text color, list element and other
Question is, how can i use the preview-content div to sort of mark it as the point where all styling is reset back to default, in css i trued { all: initial; } because online that's what i saw it should do as i wanted but it didn't work sadly