Is there a way to tell an html element to ignore any stylesheets?
Solution 1:
Assuming you could set a unique class or id on that element you could use the (limited browser support) property all
and set it to unset
or initial
Something like
<div class="ignore-css"><div>
and
.ignore-css{all:unset;}
Solution 2:
there is no easy way to do what you are asking, one approach is to create a CSS class that resets all appropriate attributes for a specific element and its children to make it more complete, here is a good starting point Element specific CSS reset