Massive DOM sizes have extra of an impact on interactivity than you may assume. This information explains why, and what you are able to do.
There isn’t any means round it: while you construct an online web page, that web page goes to have a Document Object Model (DOM). The DOM represents the construction of your web page’s HTML, and provides JavaScript and CSS entry to a web page’s construction and contents.
The issue, nonetheless, is that the dimension of the DOM impacts a browser’s skill to render a web page rapidly and effectively. Usually talking, the bigger a DOM is, the dearer it’s to initially render that web page and replace its rendering in a while within the web page lifecycle.
This turns into problematic in pages with very giant DOMs when interactions that modify or replace the DOM set off costly structure work that impacts the power of the web page to reply rapidly. Costly structure work can have an effect on a web page’s Interplay to Subsequent Paint (INP); If you need a web page to reply rapidly to person interactions, it is necessary to make sure your DOM sizes are solely as giant as mandatory.
When is a web page’s DOM too giant? #
According to Lighthouse, a web page’s DOM dimension is extreme when it exceeds 1,400 nodes. Lighthouse will start to throw warnings when a web page’s DOM exceeds 800 nodes. Take the next HTML for instance:
<ul>
<li>Checklist merchandise one.</li>
<li>Checklist merchandise two.</li>
<li>Checklist merchandise three.</li>
</ul>
Within the above code, there are 4 DOM components: the <ul>
ingredient, and its three <li>
baby components. Your net web page will virtually actually have many extra nodes than this, so it is necessary to know what you are able to do to maintain DOM sizes in test—in addition to different methods to optimize the rendering work as soon as you’ve got gotten a web page’s DOM as small as it may be.
How do giant DOMs have an effect on web page efficiency? #
Massive DOMs have an effect on web page efficiency in a number of methods:
- Through the web page’s preliminary render. When CSS is utilized to a web page, a construction just like the DOM referred to as the CSS Object Mannequin (CSSOM) is created. As CSS selectors improve in specificity, the CSSOM turns into extra advanced, and extra time is required to run the mandatory structure, styling, compositing, and paint work mandatory to attract the online web page to the display screen. This added work will increase interplay latency for interactions that happen early on throughout web page load.
- When interactions modify the DOM, both via ingredient insertion or deletion, or by modifying DOM contents and types, the work essential to render that replace may end up in very expensive structure, styling, compositing, and paint work. As is the case with the web page’s preliminary render, a rise in CSS selector specificity can add to rendering work when HTML components are inserted into the DOM as the results of an interplay.
- When JavaScript queries the DOM, references to DOM components are saved in reminiscence. For instance, for those who name
document.querySelectorAll
to pick out all<div>
components on a web page, the reminiscence value might be appreciable if the end result returns a lot of DOM components.

All of those can have an effect on interactivity, however the second merchandise within the checklist above is of explicit significance. If an interplay ends in a change to the DOM, it might probably kick off loads of work that may contribute to a poor INP on a web page.
How do I measure DOM dimension? #
You possibly can measure DOM dimension in a few methods. The primary methodology makes use of Lighthouse. While you run an audit, statistics on the present web page’s DOM will probably be within the “Keep away from an extreme DOM dimension” audit below the “Diagnostics” heading. On this part, you possibly can see the entire variety of DOM components, the DOM ingredient containing probably the most baby components, in addition to the deepest DOM ingredient.
A less complicated methodology entails utilizing the JavaScript console within the developer instruments in any main browser. To get the entire variety of HTML components within the DOM, you need to use the next code within the console after the web page has loaded:
doc.querySelectorAll('*').size;
If you wish to see the DOM dimension replace in realtime, you too can use the performance monitor tool. Utilizing this device, you possibly can correlate structure and styling operations (and different efficiency elements) together with the present DOM dimension.

If the DOM’s dimension is approaching Lighthouse DOM dimension’s warning threshold—or fails altogether—the following step is to determine methods to scale back the DOM’s dimension to enhance your web page’s skill to reply to person interactions in order that your web site’s INP can enhance.
How can I measure the variety of DOM components affected by an interplay? #
For those who’re profiling a gradual interplay within the lab that you just suspect might need one thing to do with the dimensions of the web page’s DOM, you possibly can work out what number of DOM components had been affected by choosing any piece of exercise within the profiler labeled “Recalculate Model” and observe the contextual knowledge within the backside panel.

Within the above screenshot, observe that the model recalculation of the work—when chosen—exhibits the variety of affected components. Whereas the above screenshot exhibits an excessive case of the impact of DOM dimension on rendering work on a web page with many DOM components, this diagnostic data is beneficial in any case to find out if the dimensions of the DOM is a limiting consider how lengthy it takes for the following body to color in response to an interplay.
How can I scale back DOM dimension? #
Past auditing your web site’s HTML for pointless markup, the principal solution to scale back DOM dimension is to scale back DOM depth. One sign that your DOM could be unnecessarily deep is for those who’re seeing markup that appears one thing like this within the Parts tab of your browser’s developer instruments:
<div>
<div>
<div>
<div>
<!-- Contents -->
</div>
</div>
</div>
</div>
While you see patterns like this, you possibly can in all probability simplify them by flattening your DOM construction. Doing so will scale back the variety of DOM components, and certain give you a chance to simplify web page types.
DOM depth can also be a symptom of the frameworks you employ. Particularly, component-based frameworks—corresponding to those who depend on JSX—require you to nest a number of elements in a mother or father container.
Nevertheless, many frameworks let you keep away from nesting elements through the use of what are referred to as fragments. Element-based frameworks that provide fragments as a characteristic embody (however will not be restricted to) the next:
Through the use of fragments in your framework of alternative, you possibly can scale back DOM depth. For those who’re involved in regards to the affect flattening DOM construction has on styling, you may profit from utilizing extra trendy (and sooner) structure modes corresponding to flexbox or grid.
Different methods to think about #
Even for those who take pains to flatten your DOM tree and take away pointless HTML components to maintain your DOM as small as attainable, it might probably nonetheless be fairly giant and kick off loads of rendering work because it adjustments in response to person interactions. If you end up on this place, there are another methods you possibly can take into account to restrict rendering work.
Think about an additive method #
You could be able the place giant components of your web page aren’t initially seen to the person when it first renders. This might be a chance to lazy load HTML by omitting these components of the DOM on startup, however add them in when the person interacts with the components of the web page that require the initially hidden elements of the web page.
This method is beneficial each throughout the preliminary load and even perhaps afterwards. For the preliminary web page load, you are taking on much less rendering work up entrance, that means that your preliminary HTML payload will probably be lighter, and can render extra rapidly. This can give interactions throughout that essential interval extra alternatives to run with much less competitors for the principle thread’s consideration.
When you have many components of the web page which are initially hidden on load, it might additionally velocity up different interactions that set off re-rendering work. Nevertheless, as different interactions add extra to the DOM, rendering work will improve because the DOM grows all through the web page lifecycle.
Including to the DOM over time could be difficult, and it has its personal tradeoffs. For those who’re going this route, you are probably making community requests to get knowledge to populate the HTML you propose so as to add to the web page in response to a person interplay. Whereas in-flight community requests will not be counted in direction of INP, it might probably improve perceived latency. If attainable, present a loading spinner or different indicator that knowledge is being fetched in order that customers perceive that one thing is occurring.
Restrict CSS selector complexity #
When the browser parses selectors in your CSS, it has to traverse the DOM tree to know how—and if—these selectors apply to the present structure. The extra advanced these selectors are, the extra work the browser has to do with a view to carry out each the preliminary rendering of the web page, in addition to elevated model recalculations and structure work if the web page adjustments as the results of an interplay.
Use the content-visibility
property #
CSS gives the content-visibility
property, which is successfully a solution to lazily render off-screen DOM components. As the weather method the viewport, they’re rendered on demand. The advantages of content-visibility
do not simply lower out a major quantity of rendering work on the preliminary web page render, but in addition skip rendering work for offscreen components when the web page DOM is modified as the results of a person interplay.
Conclusion #
Decreasing your DOM dimension to solely what’s strictly mandatory is an effective solution to optimize your web site’s INP. By doing so, you possibly can scale back the period of time it takes for the browser to carry out structure and rendering work when the DOM is up to date. Even if you cannot meaningfully scale back DOM dimension, there are some methods you need to use to isolate rendering work to a DOM subtree, corresponding to CSS containment and the content-visibility
CSS property.
Nevertheless you go about it, creating an setting the place rendering work is minimized—in addition to lowering the quantity of rendering work your web page does in response to interactions—the end result will probably be that your web site will really feel extra aware of customers after they work together with them. Which means you will have a decrease INP to your web site, and that interprets to a greater person expertise.
Hero picture from Unsplash, by Louis Reed.
#giant #DOM #sizes #have an effect on #interactivity