React - Styling
Table of Contents
About
Styling a component in React.
Articles Related
Methodology
Traditional
Traditional CSS-file-based styling with the import of stylesheet (with SASS, PostCSS, ..)
SSR does not like it very much.
Inline
- No Pseudo Classes/Element
- No Media Query
- No Vendor Autoprefixing
- No Animation / Keyframes
- !important for override
- No Style fallback
- Performance ? Larger HTML, larger JS
All Css in Js
- Aphrodite, ..