I am working on a browser extension that adds its UI to DOM pages. On some pages, I have a problem with some styles that affect my user interface. To counter this, I keep my user interface under a common root, which resets most styles to default.
Sometimes I skipped what causes visual glitches in my user interface. (i.e. pages of CSS file sets form { width: 80%; }, so I need to add a form { width: auto; }reset to my styles.
Is there a set of styles that reset for each CSS attribute for a value that is declared by default as a standard for each element?
source
share