We've two options to keep styles in an Angular 9 app; global styles in styles.css or individual component level styles in the component css file. If looked at the project from performance perspective; what should be the preferred way? Should we keep all styles in a single global style.css file or keep each component related styles in their component.css file?
In an angular 9 app, what should be more preferred; global styles or component level styles
2k Views Asked by Pooja Sharma AtThere are 4 best solutions below

There are several ways to add Global (Application wide styles) styles to the Angular application. The styles can be added inline, imported in index.html or added via angular-cli.json. The angular allow us to add the component specific styles in individual components, which will override the global styles.

I don't think there is much (if any at all) significant difference in performance. The global or component style distinction is all about the scope of those styles and maintainability of your codebase. Generally its good idea to keep everything in components as they are scoped to themselves and will not accidentally override other same styles from anywhere else. And global styles should stay mostly to theming, utility, helpers etc.
Besides you have an option to make component style global as well, if for some reason you need to do that.
To answer this question we have to refer to the Angular official doc.
By using Using component styles you will have a better modular design.
But, if there are some styles that are common between more than one component it's better to have a shared css and e.g. if you use pre-processor such as
.SCSS
,LESS
,SASS
, ..., you can have some_var.scss
to define general styles such as base color, fonts, ... and then@import
in other component styles or just register global style files in the styles section which, by default, is pre-configured with the globalstyles.css
file.So, using component styles provide scoping restriction and View encapsulation for your app. This scoping restriction is a styling modularity feature: