2021-06-18
3441
#css#html#vanilla javascript
Ohans Emmanuel
300
Jun 18, 2021 ⋅ 12 min read

How browser rendering works — behind the scenes

Ohans Emmanuel Visit me at ohansemmanuel.com to learn more about what I do!

Recent posts:

Eleventy Adoption Guide: Overview, Examples, And Alternatives

Eleventy adoption guide: Overview, examples, and alternatives

Eleventy (11ty) is a compelling solution for developers seeking a straightforward, performance-oriented approach to static site generation.

Nelson Michael
May 7, 2024 ⋅ 8 min read
6 CSS Tools For More Efficient And Flexible CSS Handling

6 CSS tools for more efficient and flexible CSS handling

Explore some CSS tools that offer the perfect blend of efficiency and flexibility when handling CSS, such as styled-components and Emotion.

Fimber Elemuwa
May 7, 2024 ⋅ 7 min read
Leveraging React Server Components In Redwoodjs

Leveraging React Server Components in RedwoodJS

RedwoodJS announced support for server-side rendering and RSCs in its Bighorn release. Explore this feature for when it’s production-ready.

Stephan Miller
May 6, 2024 ⋅ 9 min read
Exploring The Aha Stack: Astro, Htmx, Alpine — A Complete Tutorial With A Demo Project And Comparison To Other Stacks

Exploring the AHA stack: Tutorial, demo, and comparison

The AHA stack — Astro, htmx, and Alpine — is a solid web development stack for smaller apps that emphasize frontend speed and SEO.

Oyinkansola Awosan
May 3, 2024 ⋅ 13 min read
View all posts

29 Replies to "How browser rendering works — behind the scenes"

  1. So there are various engines in the browser: 1. The browser engine, 2. The rendering engine, 3. The JavaScript Engine
    These are the three main engines. The V8 engine is an example of a JavaScript engine. Chrome uses the V8 engine, Safari uses JavaScriptCore, and Firefox uses SpiderMonkey

  2. If you extract the inline to an external local file , the behavior is not the same.

    “`html

    body,
    html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    }

    1

    <!– http://./1.js –>

    i = 0;
    do {
    i++;
    } while (i < 1000000000)
    matrix.innerText = i;

    2

    “`

  3. this is absolutely an amazing article .these single article has cleared couple of doubts that have been tinkering in my mind for a longtime.Absolutely amazing,great work.thankyou!!!!!!!!

  4. Amazing article! Worth the read. The examples and the diagramatic explanation makes people understand the functionality much easily.

  5. Great post indeed, I loved to read it as it provides all the necessary details of what I was searching for. Thanks for great information you write it very clean. I am very lucky to get these tips from you.

Leave a Reply