How do you reset ALL inherited properties for a class in a CSS file? I need to be able to set new properties on elements without pre-defined properties having an effect on i
You cannot reset css properties, you can overwrite your css properties one by one, nothing automatic so far.
* { property:inherit ... ... long list of all .css properties ... propertyZ:inherit }
and maybe (wishing)) comming soon :initial
See this answer : Reset/remove CSS styles for element only