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 Cant reset properties, as they will always be inherited
You can surely Override them by using !important
ex:
childselector { height:auto !important; }