5 reasons to go with CSS in JS for your next application

CSS is awesome, and it’s easy to get started with.

But front-end applications have been scaling at a massive, and complex rate that I don’t believe the current CSS architecture is designed for the job.

I still believe that the current CSS architecture has a place in this crazy world for small sites, and even small applications.

I’m going to list a set of problems that I’ve come across with CSS over the 9 years of developing for the web.

And I believe CSS in JS solves these problems.

I will be demonstrating how CSS in JS solves these issues by using 2 libraries Styled Components and React.

CSS problem #1: Global namespace

Basic CSS styling boxes

I created a style sheet that contains CSS code for a container element.

The container style will increase in size if it also contains the class name home.

Loading CSS stylsheet inside index.html file

Now I have created the home page HTML, imported the stylesheet, and have added the class names to the HTML elements.

But wait, I need an about page! Let’s create that now.

Loading CSS stylsheet inside HTML file

I’ve now created the about HTML page, imported the style sheet, and created a new container element.

Great, right?

Not exactly. The style sheet that I imported contains styles from the home page.

And there is nothing to stop me from using class names that was designed for the home page.

Over time this simple site will grow to have thousands of lines of CSS, and HTML code.

And CSS rules that have been defined in the past will be re-used across the site. The problem lies when a engineer attempts to change a class rule.

It has a very high potential of breaking or changing other parts of the site that were not meant to be modified.

CSS in JS allows us to keep styles encapsulated to a React element.

Styling H1 element with React and styled components

I’ve created 2 components here.

The first component is named, Title.

Title is responsible only for styling., The second component is Greet.

Greet is responsible using the styled component that I created and displaying the greet message to the user.

Title been defined as a local style. No other React component or HTML element will be able to access these styles. Safe!

CSS problem #2: Implicit dependencies

Styling boxes with SASS

This is called style of writing SASS/CSS is called BEM. Ever heard of it?

Probably not.

BEM is one of many CSS methodologies. And the objective with a CSS methodology is to reduce the lack of built-in scoping mechanism.

Basic Object oriented CSS methodology

OOCSS is a method to separate containers and content with CSS “objects”.

We also have:

  • SMACSS
  • SUITCSS
  • Atomic

Nonetheless, each of these solutions are just a quick patch solution.

CSS problem #3: Dead code elimination

Why download CSS code that isn’t going to be used?

CSS in JS can dynamically clean up CSS code that is not being used.

CSS problem #4: Minification

CSS out of the box doesn’t have a feature to minify code.

For big applications unminified CSS code can get fairly big, especially with crazy amount of white space (indentation) we add to the stylesheet.

To minify CSS code you’ll have to use a third party service online or setup dev task to minify your code.

Which just creates another dependency your CSS.

CSS problem #5: Sharing constants

CSS supports a sharing constants with their built-in function called var().

But it does not support IE. And it barely supports Edge 15.

We can say, “Microsoft stop support of these browsers.”

But according to W3Schools, which they get 50 million visits per month.

They say 4% comes from IE and Edge.

Browser popularity in 2018

That’s a total of 2 million users using IE and Edge. Not really numbers that we can ignore.

And with a recent project with Verizon Media, the application needed to support IE 9 still.

So var(), goes right out the door. For the moment.

Another con is that CSS variables cannot be accessed on the server side either.

Let’s take the React example above and modify it a bit to see how we can use constants across our application.

CSS constant in JavaScript

I created a new file named constants.js, and inside that file it contains a value for the primary text color, FireBrick.

Using JavaScript CSS constant in styled components and React

I than updated the Greet component to use the new constant I created.

First I imported the new constant into the Greet.js file. Then I use a technique called interpolation inside the Title component.

The hard-coded color value was swapped for the constant.

While I’m at it, I’ll create a new component called Button, and it will use the same constant.

Using JavaScript CSS constant in styled components and React on Button component

The only difference is that primaryTextColor is now being used in 2 css properties for the Button component.

The components will stay consistent now.

CSS in JS benefits

Besides solving those 5 issues above, it comes with some additional benefits.

  • Generates minimum CSS requires
  • Good runtime performance
  • Supports dynamic styling
  • Easy to pre-render important CSS

Conclusion

At the end of the day we’re not getting rid of CSS. We’re just adding JavaScript to enhance CSS.

The old CSS architecture is perfectly fine for small sites, and small applications.

But it may not be appropriate choice for medium to big size applications in 2019.

Sure, we can add SASS, methodologies, and even CSS modules into the mix, but again, those are small patches that require strict rules, and tooling.

Those are not solutions for the future.

I would say that CSS in JS is not the ultimate solution, but it’s the best one we have so far.

Let me know your thoughts and comments on Twitter.

I like to tweet about code and post helpful code snippets. Follow me there if you would like some too!