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 th
@import
You can also use more specific class name - for example if you want to change
div#sample { max-width: 75%; }
on new css use
body div#sample { max-width: 75%; }
Just keep in mind, that overqualified selectors are not the best idea ;)