To reduce cumulative layout offsets (CLS), you must reserve space for page elements in advance and avoid dynamic layout changes: 1. Set width and height for pictures and videos or use the aspect-ratio attribute to reserve space; 2. Avoid inserting elements above existing content, using fixed positioning or pre-leave blanks; 3. Ensure stable font loading through @font-face's font-display and font metric overlay; 4. Clearly set the size for ads, embedded content, and iframes and use responsive aspect ratio containers; 5. Animation prioritizes properties such as transform and opacity that do not trigger rearrangement; 6. Reserve placeholders or minimum height containers for content dynamically loaded by JavaScript. In short, providing sufficient layout expectation information through CSS can effectively eliminate visual instability, thereby reducing CLS and improving user experience.
Cumulative Layout Shift (CLS) is a Core Web Vital that measures visual stability on a webpage. A high CLS score means elements are shifting around as the page loads, which hurts user experience—especially when people accidentally click the wrong button or see content jump after reading it.

A big part of preventing CLS comes down to smart CSS practices. Here's how to reduce or eliminate layout shifts using CSS:
1. Always Reserve Space for Images and Videos
One of the most common causes of CLS is when images or videos load late and push content down because their dimensions weren't reserved upfront.

? Solution: Use width
and height
attributes (or CSS) to define aspect ratio and reserve space.
<img src="/static/imghw/default1.png" data-src="photo.jpg" class="lazy" alt="A nice photo" style="max-width:90%" style="max-width:90%">
With modern CSS, you can use aspect ratio boxes:

img { width: 100%; height: auto; aspect-ratio: 16 / 9; /* Prevents layout shift */ }
This ensures the browser reserves the correct space even before the image loads.
? Tip: If you can't know the exact dimensions, estimated conservatively or use a placeholder with the same aspect ratio.
2. Avoid Injecting Content Above Existing Content
Dynamically inserting banners, ads, or messages (eg, cookie consent, promote bars) at the top or middle of the page causes everything below to shift down.
? Solution: Reserve space in advance or position non-static content off-screen until ready.
For example, reserve space for a sticky header or banner:
body::before { content: ""; display: block; height: 60px; /* Space for a future banner */ background: transparent; }
Or use position: fixed
or position: absolute
for overlays and banners so they don't affect document flow.
3. Prevent Font-Related Shifts (FOIT/FOUT)
When custom fonts load late, the browser often displays fallback fonts first, which may have different metrics—causing text to reflow when the web font loads.
? Solutions:
- Use
font-display: swap
but pair it withsize-adjust
,ascent-override
, etc., via@font-face
descriptors to match fallback fonts closely.
@font-face { font-family: 'CustomFont'; src: url('custom.woff2') format('woff2'); font-display: swap; ascent-override: 90%; descent-override: 25%; line-gap-override: 0%; size-adjust: 100%; }
- Or use the CSS Font Loading API to control when fonts are applied.
- Alternatively, preload critical fonts :
<link rel="preload" href="custom.woff2" as="font" type="font/woff2" crossorigin>
This reduces invisible text (FOIT) and suddenly swaps (FOUT), both of which can cause CLS.
4. Don't Let Ads, Embeds, or Iframes Cause Shifts
Third-party content like ads, YouTube embeds, or iframes often load late and without predefined size.
? Best practices:
- Always set explicit dimensions:
iframe, .ad-container { width: 300px; height: 250px; background: #f0f0f0; /* Optional: add a placeholder */ }
- Use aspect-ratio boxes for responsive embeds:
.embed-container { position: relative; width: 100%; aspect-ratio: 16 / 9; } .embed-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
This way, space is reserved regardless of load timing.
5. Animate Responsibly – Avoid Layout-Affecting Properties
Animations that change height
, width
, margin
, or padding
trigger layout reccalculations and can cause shifts if not anticipated.
? Use compositor-friendly properties:
- Prefer
transform
andopacity
for animations:.fade-in { opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; } .fade-in.visible { opacity: 1; transform: translateY(0); }
These don't trigger layout changes and are handled efficiently by the GPU.
6. Ensure Dynamic Content Has Reserved Space
Content loaded via JavaScript (eg, comments, recommendations) often causes shifts when injected.
? Reserve space with placeholders or skeletons:
.skeleton-card { width: 100%; height: 200px; background: #eee; border-radius: 8px; margin-bottom: 16px; }
Or define a minimum height for the container:
.comments-container { min-height: 300px; display: flex; align-items: center; justify-content: center; }
This keeps layout stable while content loads.
In short, preventing CLS with CSS is about prediction and reserved space . Key takeaways:
- Set
width
,height
, oraspect-ratio
for media. - Avoid inserting content that pushes existing elements.
- Handle web fonts carefully with
font-display
and metrics override. - Size ads, iframes, and embeds explicitly.
- Animate with
transform
andopacity
. - Use placeholders for dynamic content.
Basically, if the browser can't anticipate how much space an element will take, it will shift—so give it the info upfront.
The above is the detailed content of How to prevent Cumulative Layout Shift (CLS) with CSS?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

There are three ways to create a CSS loading rotator: 1. Use the basic rotator of borders to achieve simple animation through HTML and CSS; 2. Use a custom rotator of multiple points to achieve the jump effect through different delay times; 3. Add a rotator in the button and switch classes through JavaScript to display the loading status. Each approach emphasizes the importance of design details such as color, size, accessibility and performance optimization to enhance the user experience.

To deal with CSS browser compatibility and prefix issues, you need to understand the differences in browser support and use vendor prefixes reasonably. 1. Understand common problems such as Flexbox and Grid support, position:sticky invalid, and animation performance is different; 2. Check CanIuse confirmation feature support status; 3. Correctly use -webkit-, -moz-, -ms-, -o- and other manufacturer prefixes; 4. It is recommended to use Autoprefixer to automatically add prefixes; 5. Install PostCSS and configure browserslist to specify the target browser; 6. Automatically handle compatibility during construction; 7. Modernizr detection features can be used for old projects; 8. No need to pursue consistency of all browsers,

Use the clip-path attribute of CSS to crop elements into custom shapes, such as triangles, circular notches, polygons, etc., without relying on pictures or SVGs. Its advantages include: 1. Supports a variety of basic shapes such as circle, ellipse, polygon, etc.; 2. Responsive adjustment and adaptable to mobile terminals; 3. Easy to animation, and can be combined with hover or JavaScript to achieve dynamic effects; 4. It does not affect the layout flow, and only crops the display area. Common usages are such as circular clip-path:circle (50pxatcenter) and triangle clip-path:polygon (50%0%, 100 0%, 0 0%). Notice

Themaindifferencesbetweendisplay:inline,block,andinline-blockinHTML/CSSarelayoutbehavior,spaceusage,andstylingcontrol.1.Inlineelementsflowwithtext,don’tstartonnewlines,ignorewidth/height,andonlyapplyhorizontalpadding/margins—idealforinlinetextstyling

Setting the style of links you have visited can improve the user experience, especially in content-intensive websites to help users navigate better. 1. Use CSS's: visited pseudo-class to define the style of the visited link, such as color changes; 2. Note that the browser only allows modification of some attributes due to privacy restrictions; 3. The color selection should be coordinated with the overall style to avoid abruptness; 4. The mobile terminal may not display this effect, and it is recommended to combine it with other visual prompts such as icon auxiliary logos.

To create responsive images using CSS, it can be mainly achieved through the following methods: 1. Use max-width:100% and height:auto to allow the image to adapt to the container width while maintaining the proportion; 2. Use HTML's srcset and sizes attributes to intelligently load the image sources adapted to different screens; 3. Use object-fit and object-position to control image cropping and focus display. Together, these methods ensure that the images are presented clearly and beautifully on different devices.

The choice of CSS units depends on design requirements and responsive requirements. 1.px is used for fixed size, suitable for precise control but lack of elasticity; 2.em is a relative unit, which is easily caused by the influence of the parent element, while rem is more stable based on the root element and is suitable for global scaling; 3.vw/vh is based on the viewport size, suitable for responsive design, but attention should be paid to the performance under extreme screens; 4. When choosing, it should be determined based on whether responsive adjustments, element hierarchy relationships and viewport dependence. Reasonable use can improve layout flexibility and maintenance.

Different browsers have differences in CSS parsing, resulting in inconsistent display effects, mainly including the default style difference, box model calculation method, Flexbox and Grid layout support level, and inconsistent behavior of certain CSS attributes. 1. The default style processing is inconsistent. The solution is to use CSSReset or Normalize.css to unify the initial style; 2. The box model calculation method of the old version of IE is different. It is recommended to use box-sizing:border-box in a unified manner; 3. Flexbox and Grid perform differently in edge cases or in old versions. More tests and use Autoprefixer; 4. Some CSS attribute behaviors are inconsistent. CanIuse must be consulted and downgraded.
