Home Web Front-end JS Tutorial Break up with CSS-in-JS

Break up with CSS-in-JS

Aug 08, 2024 pm 09:02 PM

CSS-in-JS

'CSS-in-JS' is a flow that started from styled-components and defines styling within Javascript.

styled-component, Emotion, Mantine, etc.

merit

  1. The applied scope is small.
    1. You can reduce the CSS scope by using the css module
  2. It is defined in the same place as the
  3. component. (colocation)
  4. Javascript Variable can be used.

disadvantage

  1. There is runtime overhead
  2. You must download the Css in JS library file.
    1. Emotion is 7.9KB.
    2. Mantine is 134KB!

huge downside

  1. Inserting CSS rules frequently causes a lot of computational work.
    1. Comparing Emotion and CSS
    2. There was a performance increase of about 50% when using CSS.
  2. When using SSR, a variety of issues arise.
    1. If you look at the Emotion repo, there are many issues.

Real-world performance comparison

We measured performance by comparing CSS-in-JS and Tailwind using code actually used in production.

Setup

  • CSS-in-JS uses Mantine (based on Emotion).
  • Performance measurement uses React dev tool.
  • The performance measurement target is a 30 * 5 Table (component name: SheetTable).

screen

CSS-in-JS 와 헤어지기

Experiment progress

    When you press the
  • button, the above screen is rendered.
  • Turn on recording in React Profiler and press the button to record screen rendering.
  • Measures the rendering time of SheetTable.
  • Perform a total of 5 times and calculate the average.

CSS-in-JS (Mantine)

CSS-in-JS 와 헤어지기

Tailwind

CSS-in-JS 와 헤어지기

result

  • The rendering time was reduced by about 36%.
  • Even just changing one cell code resulted in a significant performance improvement. (Of course, most of them are cells)
  • On a 60Hz monitor, 1 frame is 16ms, but 3 frames -> It became 2 frames

CSS-in-JS 와 헤어지기

conclusion

  • Using statically generated CSS is considerably better in terms of performance.
  • Use Tailwind unless you need to use JS variables.
  • (Additional) To introduce SSR, it is convenient to abandon CSS-in-JS.
Ref

[1] https://dev.to/srmagura/why-were-breaking-up-wiht-css-in-js-4g9b

The above is the detailed content of Break up with CSS-in-JS. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Replace String Characters in JavaScript

jQuery Check if Date is Valid jQuery Check if Date is Valid Mar 01, 2025 am 08:51 AM

jQuery Check if Date is Valid

jQuery get element padding/margin jQuery get element padding/margin Mar 01, 2025 am 08:53 AM

jQuery get element padding/margin

10 jQuery Accordions Tabs 10 jQuery Accordions Tabs Mar 01, 2025 am 01:34 AM

10 jQuery Accordions Tabs

10 Worth Checking Out jQuery Plugins 10 Worth Checking Out jQuery Plugins Mar 01, 2025 am 01:29 AM

10 Worth Checking Out jQuery Plugins

HTTP Debugging with Node and http-console HTTP Debugging with Node and http-console Mar 01, 2025 am 01:37 AM

HTTP Debugging with Node and http-console

jquery add scrollbar to div jquery add scrollbar to div Mar 01, 2025 am 01:30 AM

jquery add scrollbar to div

Custom Google Search API Setup Tutorial Custom Google Search API Setup Tutorial Mar 04, 2025 am 01:06 AM

Custom Google Search API Setup Tutorial

See all articles