Vanta Logo
SPONSOR
Automate SOC 2 & ISO 27001 compliance with Vanta. Get $1,000 off.
Archived
Published
4 min read

Trevor I. Lasn

Staff Software Engineer, Engineering Manager

All You Need To Know About CSS-in-JS

An overview of CSS-in-JS and its relevance in modern web development

CSS-in-JS brings CSS to the component level, moving away from the traditional document-level styling approach.

You’ve likely come across terms like CSS-in-JS, Styled Components, Radium, and Aphrodite.

You might be wondering, “Why should I care? I’m perfectly fine with CSS in traditional .css files.”

CSS-in-JS is a topic that often sparks debate. I encourage you to keep an open mind and consider if it might enhance your workflow. Ultimately, the goal is to use tools that make you more efficient and content in your work.

Maintaining a large collection of stylesheets has always felt cumbersome to me, so I’m always looking for new approaches.

Many developers are curious about alternative styling methods. CSS-in-JS has emerged as one of the most promising concepts. Let’s explore why it might be worth trying.

What is CSS-in-JS?

import styled from 'styled-components'
// Create a Title component that'll render an <h1> tag with some styles
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: #BF4F74;
`;
// Create a Wrapper component that'll render a <section> tag with some styles
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`;
// Use Title and Wrapper like any other React component – except they're styled!
render(
<Wrapper>
<Title>
Hello World!
</Title>
</Wrapper>
);

CSS-in-JS is a powerful abstraction over traditional CSS. It allows you to describe styles using JavaScript in a declarative and maintainable way. This approach leverages JavaScript’s capabilities to manage CSS at runtime and even server-side. It’s framework-agnostic, lightweight (around 6KB minified and gzipped), and extensible through a plugin API.

It’s important to note that inline styles and CSS-in-JS are not the same. Here’s a demonstration to clarify the difference.

The Difference

Not all CSS features can be replaced by JavaScript event handlers. For example, pseudo-selectors like :disabled, :before, and :nth-child aren’t possible with inline styles, and styling html and body tags is not supported.

However, with CSS-in-JS, you can use the full range of CSS features. Since it generates actual CSS, you can use any media query or pseudo-selector you need. Some libraries, like jss and styled-components, even add support for non-native features like nesting!

Why Not Just Stick With CSS?

Traditionally, we’ve used CSS at the document level, but modern web development revolves around components, not pages. CSS was not originally designed for a component-based approach. CSS-in-JS addresses this gap. A shout-out to Vue for handling this well, although Vue’s styles don’t have access to component state.

What Are the Benefits of Using CSS-in-JS?

  • Component-Based Thinking: Manage styles at the component level, eliminating the need to maintain numerous stylesheets.
  • Leverages JavaScript’s Power: Enhance CSS by tapping into JavaScript’s ecosystem.
  • True Isolation of Rules: CSS-in-JS ensures that styles don’t unintentionally inherit properties from parent elements, thanks to tools like the jss-isolate plugin.
  • Scoped Selectors: CSS-in-JS prevents selector collisions by generating unique class names, unlike traditional CSS, which has a global namespace.
  • Automatic Vendor Prefixing: No need to worry about vendor prefixes; they’re handled for you.
  • Code Sharing: Easily share constants and functions between your JavaScript and CSS.
  • Efficient DOM Management: Only the styles currently in use are rendered in the DOM, reducing clutter.
  • Dead Code Elimination: Unused styles are removed automatically.
  • CSS Unit Testing: You can write unit tests for your styles.

What Are the Drawbacks of Using CSS-in-JS?

  • Learning Curve: It takes time to learn this new approach.
  • Additional Dependencies: You’ll need to manage new libraries in your project.
  • Onboarding Challenges: New team members might take longer to adapt to a codebase using CSS-in-JS.
  • Challenging the Status Quo: Introducing CSS-in-JS might disrupt established workflows, though this isn’t necessarily a bad thing.

Despite these challenges, the advantages of CSS-in-JS far outweigh the drawbacks. It’s worth giving it a try!

All of these libraries offer extensive functionality, including theming, dynamic props, server-side rendering, and more.

If you found this article helpful, you might enjoy my free newsletter. I share developer tips and insights to help you grow your skills and career.


More Articles You Might Enjoy

If you enjoyed this article, you might find these related pieces interesting as well. If you like what I have to say, please check out the sponsors who are supporting me. Much appreciated!

Webdev
6 min read

Inside the CSS Engine: CSSOM Explained

A deep dive into how browsers parse and manipulate CSS, its impact on web performance, and why it matters

Oct 25, 2024
Read article
Astro
5 min read

Add Auth to Astro 5 with Clerk in 5 Minutes

The simplest setup for adding Clerk authentication to your Astro project, with minimal code

Dec 18, 2024
Read article
Leadership
5 min read

A Company Is Not a Family. It's a Sports Team

'We're not just a company, we're a family!' It's a nice sentiment, sure. But it's also a load of crap.

Oct 5, 2024
Read article
Node.js
4 min read

Node.js Corepack: Version Control for Package Managers

Manage yarn and pnpm versions consistently across your team

Nov 19, 2024
Read article
Leadership
3 min read

Engineering Managers Should Write Code

Engineering managers who stop writing code lose touch with their teams and become ineffective leaders

Sep 18, 2024
Read article
Tech
3 min read

When Will We Have Our First AI CEO?

Welcome to the future of corporate leadership. It's efficient, profitable, and utterly inhuman

Nov 4, 2024
Read article
Webdev
7 min read

Tips for Reducing Cyclomatic Complexity

Cyclomatic complexity is like counting how many ways a car can go. More options make it harder to drive because you have to make more decisions, which can lead to confusion.

Sep 10, 2024
Read article
Leadership
6 min read

The Monday Morning Test to Measure Engineering Team Health

Why the first day back can reveal everything about your engineering team's health

Nov 4, 2024
Read article
Leadership
4 min read

Unrealistic Deadlines In Software Engineering

Unrealistic deadlines are more than just stressful—they set engineers up for failure

Sep 7, 2024
Read article

This article was originally published on https://www.trevorlasn.com/blog/all-you-need-to-know-about-css-in-js. It was written by a human and polished using grammar tools for clarity.