Critical CSS

Rate this content
Bookmark

This talk dives into Critical CSS as a method to enhance web performance and user experience. It covers what critical CSS is and best practices for effective implementation.

This talk has been presented at React Day Berlin 2024, check out the latest edition of this React Conference.

FAQ

To assess the impact of critical CSS, measure performance metrics such as First Contentful Paint (FCP) and Largest Contentful Paint (LCP) using tools like Chrome's Lighthouse, Performance tab, or WebPageTest.org.

Static websites with pre-generated pages are better suited for critical CSS optimization, while dynamic websites, which generate pages per request, may face integration challenges and increased server load.

Extracting critical CSS at runtime can increase server load and processing time, potentially degrading performance. It's recommended to optimize at build time to avoid this.

Tools such as Penthouse, Critical, and Besties can be used to extract and inline critical CSS. These tools vary in terms of features, integration capabilities, and performance.

Challenges include over-inlining too much CSS, forgetting to load non-critical styles, specificity issues, runtime optimization impacting performance, and ensuring styles are extracted for each render.

CSS can be added to HTML through inline styles using style tags or external stylesheets using link tags, each with its trade-offs in terms of performance and rendering.

The browser follows a critical rendering path: requesting HTML, building the DOM, constructing the CSSOM, combining them into a render tree, and finally performing layout and paint steps to display content.

Critical CSS speeds up initial rendering by reducing render-blocking styles, leading to better user experiences, especially on slower networks or low-power devices. It enhances metrics like First Contentful Paint (FCP) and potentially Largest Contentful Paint (LCP).

Critical CSS improves user experience on mobile devices by reducing rendering times, which is crucial given the lower processing power and potentially slower network connections often found on these devices.

Critical CSS is a technique used to inline only the CSS needed to render the above-the-fold content directly into the HTML document's head section, reducing the time to render the first meaningful content.

Sergey Labuts
Sergey Labuts
18 min
16 Dec, 2024

Comments

Sign in or register to post your comment.
  • Maksim Hodasevich
    Maksim Hodasevich
    FocusReactive
    Useful and unique content. Helped me improve my website, recommend 🏎️🏎️🏎️🏎️
  • Alex Hramovich
    Alex Hramovich
    Thanks for the talk! Critical CSS is still a huge issue in most projects..
Video Summary and Transcription
In this talk, we'll explore what critical CSS is, when to use it or not, how to implement it effectively, and some common challenges and use cases. The critical rendering path is a sequence of steps the browser takes to convert HTML, CSS, and JavaScript into visible content on the screen. Time and CPU are crucial factors in rendering content quickly, especially for mobile devices. Critical CSS matters because the CSOM can't be built incrementally, and the order of CSS rules affects their specificity. There are two primary ways to add CSS to your HTML: inline styles using style tags or external stylesheets using link tags. Critical CSS aligns only the styles needed to render the above-default content, reducing the size of render-blocking styles. There are manual and automatic tools for identifying critical CSS. Critical CSS is commonly used for static websites with statically generated pages. Testing the effect of critical CSS can be done using Lighthouse, Chrome Performance tab, or WebPageTest.org. BISTIs requires some extra handling but offers better performance. Over-inlining CSS and wrong style order can cause issues with critical styles. Implement optimization at build time.
Available in Español: CSS Crítico

1. Introduction to Critical CSS

Short description:

In this talk, we'll explore what critical CSS is, when to use it or not, how to implement it effectively, and some common challenges and use cases. The critical rendering path is a sequence of steps the browser takes to convert HTML, CSS, and JavaScript into visible content on the screen. Time and CPU are crucial factors in rendering content quickly, especially for mobile devices. Critical CSS matters because the CSOM can't be built incrementally, and the order of CSS rules affects their specificity. There are two primary ways to add CSS to your HTML: inline styles using style tags or external stylesheets using link tags.

Hi, my name is Sergey Labozy, and I'm a software engineer at Focus Reactive. Over the past few years, I've spent a lot of time exploring web performance, and in this talk I want to share with you some insights on a key topic. Critical CSS, a powerful way to enhance user experience. In this talk we'll explore what critical CSS is, when to use it or not, how to implement it effectively, and some common challenges and use cases.

Before we jump into critical CSS, let's start at the very beginning. How a browser renders a page. This involves the critical rendering path, a sequence of steps the browser takes to convert HTML, CSS, and JavaScript into visible content on the screen. Let's break it down briefly. First, browser needs to make a request to get initial HTML. As soon as it receives the first HTML chunk, you start building the DOM, document object model. The browser finds the CSS and starts constructing the CSOM, CSS object model. When the DOM and CSOM are ready, the browser combines them into a render tree, which only includes the visible elements. Finally, the layout and paint steps occur and the content appears on the screen.

The main goal here is to render content as quickly as possible, but browsers have limited resources like time and CPU. Time is crucial, because we want the user to see the content as fast as possible, which is measured by a core vital metric called largest content to paint, or LCP. And given that everything happens in the user's browser, CPU usage is equally important, especially for mobile devices. Add to this varying network speeds and latencies. We also should mention JavaScript here. JavaScript can dynamically modify the DOM and CSOM. Manipulating the DOM and CSOM can be very slow. Not necessarily and not in all cases, but we won't go into that here, we just assume that we don't modify the DOM and CSOM with JavaScript.

With understanding of critical rendering path, let's get closer to why critical CSS matters. We've seen that the render tree needs both the DOM and the CSOM. However, unlike the DOM, the CSOM can't be built incrementally. Why? Because CSS is cascading, meaning the order of CSS rules affects their specificity. The last line of CSS could override all preceding styles. This is why the browser can't partially apply CSS. It must first download, parse, and understand the entire stylesheet to avoid flashes of unstyled content. How to Add CSS to HTML? There are two primary ways to add CSS to your HTML. Inline styles using style tags or external stylesheets using link tags.

2. Understanding Critical CSS Trade-offs

Short description:

When using an external stylesheet, the browser must make an additional request to fetch it. CSS is render-blocked, causing delays in rendering. Critical CSS aligns only the styles needed to render the above-default content, reducing the size of render-blocking styles. This speeds up initial rendering and improves user experience.

Each has its trade-offs. When you use an external stylesheet via link tag, the browser must make an additional request to fetch it. This is often beneficial if you have a large amount of HTML and CSS, because the browser can load them in parallel. While the CSS is being fetched, the browser can keep building the DOM incrementally. However, there is a catch. CSS is render-blocked. The browser needs to wait for the stylesheet to finish loading before it can construct the render tree and display the page. If your stylesheet is large, this delay becomes noticeable.

The images show that HTML, blue, and CSS, purple, are loaded in parallel, but the CSS is blocking render. The rendering event, or the first conceptual paint, or FCP, occurs immediately after the CSS has finished loading. The first conceptual paint is colored green and highlighted with red borders. In this image we can see that reducing the size of the external stylesheet does not speed up rendering. We see that FCP is blocked by CSS and rendering occurs long after the document has fully loaded and parsed. If your CSS is small, the time it takes to send a new request can be comparable to the load time.

The idea behind critical CSS is to align only the styles needed to render the above-default content directly into the head section of your HTML document. This avoids the need for an additional HTTP request and reduces the time to render the first meaningful content. But there is a trade-off too. If you align too much CSS, you increase the size of your head section, which in turn delays the browser's ability to start building the render tree. The goal here is to find a spot where you align just enough CSS to render the visible portion of the page quickly while offloading less critical styles to external stylesheets that can be loaded asynchronously. Here is an example of critical CSS. In this image, we see that rendering occurs while the HTML is loading, and the external stylesheet is loaded in an unblocking manner. Let's summarize why critical CSS is important. With critical CSS, we reduced the size of render-blocking styles. Everything is delivered in one document, no additional stylesheets required. This speeds up initial rendering, also known as FCP, or First Contentful Paint. In some cases, LCP will also be better with critical CSS, if your LCP is text, and for images it depends on the image size. If the image is too big, the LCP will be delayed due to image loading time. And most important, better user experience, especially for mobile users with slow connections. There are several ways to identify critical CSS.

Available in other languages:

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Don't Solve Problems, Eliminate Them
React Advanced 2021React Advanced 2021
39 min
Don't Solve Problems, Eliminate Them
Top Content
Kent C. Dodds discusses the concept of problem elimination rather than just problem-solving. He introduces the idea of a problem tree and the importance of avoiding creating solutions prematurely. Kent uses examples like Tesla's electric engine and Remix framework to illustrate the benefits of problem elimination. He emphasizes the value of trade-offs and taking the easier path, as well as the need to constantly re-evaluate and change approaches to eliminate problems.
Using useEffect Effectively
React Advanced 2022React Advanced 2022
30 min
Using useEffect Effectively
Top Content
Today's Talk explores the use of the useEffect hook in React development, covering topics such as fetching data, handling race conditions and cleanup, and optimizing performance. It also discusses the correct use of useEffect in React 18, the distinction between Activity Effects and Action Effects, and the potential misuse of useEffect. The Talk highlights the benefits of using useQuery or SWR for data fetching, the problems with using useEffect for initializing global singletons, and the use of state machines for handling effects. The speaker also recommends exploring the beta React docs and using tools like the stately.ai editor for visualizing state machines.
Design Systems: Walking the Line Between Flexibility and Consistency
React Advanced 2021React Advanced 2021
47 min
Design Systems: Walking the Line Between Flexibility and Consistency
Top Content
The Talk discusses the balance between flexibility and consistency in design systems. It explores the API design of the ActionList component and the customization options it offers. The use of component-based APIs and composability is emphasized for flexibility and customization. The Talk also touches on the ActionMenu component and the concept of building for people. The Q&A session covers topics such as component inclusion in design systems, API complexity, and the decision between creating a custom design system or using a component library.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
Watch video: React Concurrency, Explained
React 18's concurrent rendering, specifically the useTransition hook, optimizes app performance by allowing non-urgent updates to be processed without freezing the UI. However, there are drawbacks such as longer processing time for non-urgent updates and increased CPU usage. The useTransition hook works similarly to throttling or bouncing, making it useful for addressing performance issues caused by multiple small components. Libraries like React Query may require the use of alternative APIs to handle urgent and non-urgent updates effectively.
Managing React State: 10 Years of Lessons Learned
React Day Berlin 2023React Day Berlin 2023
16 min
Managing React State: 10 Years of Lessons Learned
Top Content
Watch video: Managing React State: 10 Years of Lessons Learned
This Talk focuses on effective React state management and lessons learned over the past 10 years. Key points include separating related state, utilizing UseReducer for protecting state and updating multiple pieces of state simultaneously, avoiding unnecessary state syncing with useEffect, using abstractions like React Query or SWR for fetching data, simplifying state management with custom hooks, and leveraging refs and third-party libraries for managing state. Additional resources and services are also provided for further learning and support.
TypeScript and React: Secrets of a Happy Marriage
React Advanced 2022React Advanced 2022
21 min
TypeScript and React: Secrets of a Happy Marriage
Top Content
React and TypeScript have a strong relationship, with TypeScript offering benefits like better type checking and contract enforcement. Failing early and failing hard is important in software development to catch errors and debug effectively. TypeScript provides early detection of errors and ensures data accuracy in components and hooks. It offers superior type safety but can become complex as the codebase grows. Using union types in props can resolve errors and address dependencies. Dynamic communication and type contracts can be achieved through generics. Understanding React's built-in types and hooks like useState and useRef is crucial for leveraging their functionality.

Workshops on related topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
React Hooks Tips Only the Pros Know
React Summit Remote Edition 2021React Summit Remote Edition 2021
177 min
React Hooks Tips Only the Pros Know
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
The addition of the hooks API to React was quite a major change. Before hooks most components had to be class based. Now, with hooks, these are often much simpler functional components. Hooks can be really simple to use. Almost deceptively simple. Because there are still plenty of ways you can mess up with hooks. And it often turns out there are many ways where you can improve your components a better understanding of how each React hook can be used.You will learn all about the pros and cons of the various hooks. You will learn when to use useState() versus useReducer(). We will look at using useContext() efficiently. You will see when to use useLayoutEffect() and when useEffect() is better.
React, TypeScript, and TDD
React Advanced 2021React Advanced 2021
174 min
React, TypeScript, and TDD
Top Content
Featured WorkshopFree
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Designing Effective Tests With React Testing Library
React Summit 2023React Summit 2023
151 min
Designing Effective Tests With React Testing Library
Top Content
Featured Workshop
Josh Justice
Josh Justice
React Testing Library is a great framework for React component tests because there are a lot of questions it answers for you, so you don’t need to worry about those questions. But that doesn’t mean testing is easy. There are still a lot of questions you have to figure out for yourself: How many component tests should you write vs end-to-end tests or lower-level unit tests? How can you test a certain line of code that is tricky to test? And what in the world are you supposed to do about that persistent act() warning?
In this three-hour workshop we’ll introduce React Testing Library along with a mental model for how to think about designing your component tests. This mental model will help you see how to test each bit of logic, whether or not to mock dependencies, and will help improve the design of your components. You’ll walk away with the tools, techniques, and principles you need to implement low-cost, high-value component tests.
Table of contents- The different kinds of React application tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting DOM elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RTL tests and how to handle them
Prerequisites- Familiarity with building applications with React- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Testing Library- Machine setup: Node LTS, Yarn
Master JavaScript Patterns
JSNation 2024JSNation 2024
145 min
Master JavaScript Patterns
Top Content
Featured Workshop
Adrian Hajdin
Adrian Hajdin
During this workshop, participants will review the essential JavaScript patterns that every developer should know. Through hands-on exercises, real-world examples, and interactive discussions, attendees will deepen their understanding of best practices for organizing code, solving common challenges, and designing scalable architectures. By the end of the workshop, participants will gain newfound confidence in their ability to write high-quality JavaScript code that stands the test of time.
Points Covered:
1. Introduction to JavaScript Patterns2. Foundational Patterns3. Object Creation Patterns4. Behavioral Patterns5. Architectural Patterns6. Hands-On Exercises and Case Studies
How It Will Help Developers:
- Gain a deep understanding of JavaScript patterns and their applications in real-world scenarios- Learn best practices for organizing code, solving common challenges, and designing scalable architectures- Enhance problem-solving skills and code readability- Improve collaboration and communication within development teams- Accelerate career growth and opportunities for advancement in the software industry
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up