Preface
It is very common to see 3rd party libs in our projects, especially some UI frames. Meanwhile, here comes the problems.
How can we override partial 3rd party style and avoid our style being overridden by 3rd party.
Well, that’s two question.
Main
Override Partial 3rd Party Style
- lib-override.css
I think the first thing is to prepare a single file like lib-override.css to do this job whatever choice we make.
- override ways
It’s obvious that !important
or #id
can help us do this job. However, I wouldn’t suggest you to do that. I would choose to use class selector with namespace to solve this kind of problem. For example,
3rd party code is:
.el-button--primary { |
Then you can write:
.app { |
Code above also works to avoid our style being overridden by 3rd party. In some cases, if one class is not enough you may have to add more class as namespace.