design by Anna Dadej
TL;DR: Thinking in components — No longer do you have to maintain bunch of style-sheets. CSS-in-JS abstracts the CSS model to the component level, rather than the document level (modularity).
You probably heard terms like CSS-in-JS, Styled Components, Radium, Aphrodite and you’re left there hanging “why is this a thing? — I’m perfectly happy with CSS-in-CSS (CSS in .css).”
I’m here to shine some light on why this is a thing and hopefully we will least understand the concept and understand why it’s a thing. With that said — please feel free to use CSS-in-CSS — on no terms are you obligated to use CSS-in-JS. Whatever works best for you and makes you happy is hands down the best solution, always-always!
CSS-in-JS is a delicate and controversial topic — I’m advocating having an open mind and weighing if this makes sense to you — ask yourself “will it improve my workflow?” — in the end — that’s the only thing that matters — use tools that make you happier and more productive!
I’ve always felt awkward having to maintain a huge folder of stylesheets. I would like to try different approaches. I’ve seen many people asking if there are new styling ideas. CSS-in-JS is so far the best concept.
Let’s give CSS-in-JS a shot.
Small-To-Medium size project CSS
JSS is a more powerful abstraction over CSS. It uses JavaScript as a language to describe styles in a declarative and maintainable way. It is a high performance JS to CSS compiler which works at runtime and server-side. This core library is low level and framework agnostic. It is about 6KB (minified and gzipped) and is extensible via plugins API. — source
Keep in mind Inline styles and CSS-in-JS are not the same! They’re different — Quick demonstration time!
inline styles
In the browser this will get attached to the DOM node like so:
In the browser this will gets attached to the DOM like so:
See the slight difference? CSS-in-JS attached a <style>
tag on top of the DOM while inline styles just attached the properties to the DOM node.
Why does this matter?
Not all CSS features can be aliased with JavaScript event handlers , many pseudo selectors (like :disabled
, :before
, :nth-child
) aren’t possible, styling the html
and body
tags isn’t supported etc.
With CSS-in-JS, you have all the power of CSS at your fingertips. Since actual CSS is generated, you can use every media query and pseudo selector you can think of. Some libraries (like jss
, styled-components
) even add support for neat, non-CSS-native features like nesting!
Brilliant article going in depth on how they’re different.
“Just write the darn CSS in CSS and be done with it.”
Yes — while that’s the case for how it’s been done for a long-long time — the challenge is modern web is written in components not pages.
CSS was never actually made for component based approaches. CSS-in-JS solves exactly this problem. Shout-out to Vue for solving this problem beautifully even tho Vues styles have no access to components state.
Here’s Bob Ross painting rocks to cool down the tension 😄
The pros out-weight the cons heavily — let’s give CSS-in-JS a shot! Nothing to lose!
Will provide a quick hello world example for all the popular CSS-in-JS libraries— help yourself to choose which one you like the most based on the syntax.
Note: Radium uses decorators!
These are really simple examples which demonstrate the core functionality. All of the libraries have much more functionality included — for example, theming, dynamic props, server side rendering and much more!
Excellent post going in depth about all of the features CSS-in-JS enables.
Here’s the full list — go and give all the libraries a quick try!
Hate it or love it — CSS-in-JS deserves a chance!
Convinced CSS-in-JS is not for me? There’s another option — CSS Modules
Thanks for reading!
Buy Indrek Lasn a Coffee - BuyMeACoffee.com_Buy Me A Coffee help creators receive support from their audience in a friendly manner. Quickly accept donations and…_www.buymeacoffee.com
Hope you found this useful! Stay awesome. ❤
The best front-end hacking cheatsheets — all in one place._It’s rather impossible to remember all the APIs by heart. This is when cheatsheets jump in! Here are the best front-end…_medium.freecodecamp.org
Let’s build a customizable rich text editor with Slate and React_What is a rich text editor anyway?_medium.com
The secret to being a top developer is building things! Here’s a list of fun apps to build!_You can only become a great developer by putting the effort in. Imagine for a moment — You can’t become fit physically…_medium.freecodecamp.org
TypeScript — JavaScript with superpowers_Javascript is cool. But do you know what’s even more cool?_medium.freecodecamp.org