I have one HTML page which I am getting from the third party.
The issue is HTML comes with CSS inside style tag. That CSS is kind of generic where they are adding their own font and own font size on body.
I am using dom sanitizer with bypassSecurityTrustHtml for showing HTML on my application.
this.domSanitizer.bypassSecurityTrustHtml(htmldata);
Now after adding new HTML, my application style is getting affected because of that. How can I avoid this except adding third-party URL in an iframe?