I am facing an issue in ASP.NET Webforms with a Master Page that imports Bootstrap CSS, which is then used by all child pages of the site.
One of the child pages contains HTML content generated from a WYSIWYG editor. However, the styles applied by Bootstrap via the master page end up overriding the styles of this content.
Is there a way to isolate a specific section of the page from using Bootstrap, while still allowing other parts like the header and footer to utilize it as intended?
I'm trying to find a solution that doesn't involve removing this page from being dependent on the Master Page.