How do I get my @import stylesheet to override the main stylesheet?

后端 未结 5 904
独厮守ぢ
独厮守ぢ 2021-02-05 18:20

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

5条回答
  •  孤街浪徒
    2021-02-05 19:00

    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 ;)

提交回复
热议问题