Utilizing the TinyCME HTML editor with the angular directive, I am currently displaying the output of the editor - where the content is bound to the "description" property in the scope - within a div using ng-html-bind.
<div ng-bind-html="description" ></div>
While everything seems to be functioning correctly, I am noticing discrepancies between what is displayed in the editor and what appears in the div, especially in terms of styling such as background color and text color. Here is a preview of how it looks in the editor https://i.sstatic.net/GEkTD.png
And this is what I see in the div element:
https://i.sstatic.net/tUOil.png
It seems like the styles applied within the editor are being overridden by the styles defined at the div level.
Since I lack experience in CSS, I apologize for any misunderstanding on my part.
Ultimately, my goal is to mirror the appearance of the editor's output in the div, replicating the visual style exactly. Any suggestions or assistance would be greatly appreciated.