I imported another stylesheet using @import in the main style sheet file. I would like the changes I have made in the @import stylesheet to override the main style sheet. Is this possible?
I imported another stylesheet using @import in the main style sheet file. I would
Share
If your goal is to override styles by importing another stylesheet, you should use the order of precedence.
Here the
style.cssis the original andstyle-override.csswould contain your new custom css. These styles will override the styles fromstyle.css. This means you won’t need to use!importantbecause the style is overwritten.Avoid !important whenever you can.
To do @import
Also as a side note if you would rather remove all styles from the page, use a css reset.
Check out a CSS reset at http://meyerweb.com/eric/tools/css/reset/ and add it to reset.css.