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

后端 未结 5 969
独厮守ぢ
独厮守ぢ 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 18:59

    This solution working perfect for me.

    Make copy of your main.css and rename it to style.css. In main.css delete all and past :

    @import url("style.css");
    @import url("style-override.css");
    

    Thats all.

提交回复
热议问题