I\'m attempting to add a drop down to a page that already has a global \"select\" style. Is there a way to tell the new select list to ignore the global style? There\'s ab
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
all
unset
initial
Something like
<div class="ignore-css"><div>
and
.ignore-css{all:unset;}