DEV Community

Cover image for How to fix/improve the LCP issue on the webpage?
Ashish Kumar
Ashish Kumar

Posted on • Edited on

How to fix/improve the LCP issue on the webpage?

LCP is one of the main factors affecting the performance of web pages.LCP is the time taken to paint the largest web page element on the pixel of the screen.

how to fix lcp of webpage

Factors affecting LCP

There are following factors that cause LCP increase in webpage

  1. Large image size in the first viewport
  2. Heavy animation, background image in the banner/ first section
  3. images are not lazy-loaded
  4. unused script and CSS

How to fix this

to fix LCP you need to improve above mentioned factors

  1. Optimize image size and use the latest image formats like webp & avif
  2. use async and defer to avoid render blocking
<script defer src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script async src="./main.js"></script>
Enter fullscreen mode Exit fullscreen mode
  1. Lazy-load images other than the first section
 <img loading="lazy" class="shape" src="./images/coffee-shape.svg" />
Enter fullscreen mode Exit fullscreen mode

or use intersection observer for lazy loading

  1. Optimize unused CSS by using the media attribute
<link
    media="print"
    onload="this.media='all'"
    rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
Enter fullscreen mode Exit fullscreen mode
  1. Preload banner image or background image
<link rel="prelod" as="image" href="./images/banner-bg.png"/>
Enter fullscreen mode Exit fullscreen mode

Other than these fixes you will have to follow suggestions which lighthouse is suggesting you to fix.

Image description

Result :

Image description

follow me
website : frontendzone
Youtube : frontendzone

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

If this post resonated with you, feel free to hit ❤️ or leave a quick comment to share your thoughts!

Okay