Technology

Stop Shipping JPEGs in 2026: Why AVIF Should Be Your Webflow Default

Written by
Pravin Kumar
Published on
Apr 28, 2026

Most modern image format advice in 2026 still defaults to WebP. The data has moved past that. AVIF browser support crossed 94.9 percent globally as of early 2026, Google PageSpeed Insights now actively flags JPEG and recommends AVIF, and the file-size savings are 30 to 45 percent over WebP on photographic content. The counter-intuitive read for Webflow Partners is that the most expensive thing about your current image pipeline is not your hosting plan. It is the bandwidth and LCP penalty you pay every month for keeping JPEG as the fallback rather than the safety net.

What Changed About AVIF Browser Support Between 2024 and 2026?

In 2024, AVIF support sat below 90 percent globally with meaningful gaps in older Safari and some Android versions. By early 2026, AVIF crossed 94.9 percent global support according to dev.to analysis, while WebP sits at roughly 95.67 percent. Pixotter's March 2026 benchmark places WebP at approximately 97 percent and AVIF at 93 percent by the more conservative measure. Both formats are now in the viable production tier.

The practical effect is that AVIF is no longer a future format you should plan for. It is a present format you should default to. The fallback chain has shifted from JPEG-as-default with WebP-as-upgrade to AVIF-as-default with WebP-as-fallback and JPEG-as-last-resort. This inversion is the single most leveraged change you can make to image pipelines on Webflow sites this year.

How Big Are the Actual File-Size Savings on Real Webflow Hero Images?

For a typical 1920x1080 hero image of photographic content, AVIF compresses to roughly 30 to 45 percent smaller than WebP at equivalent visual quality, according to WebPict's January 2026 benchmark. Compared to JPEG, the savings are 40 to 60 percent. On a Webflow site with five to ten hero-class images on the homepage, the cumulative bandwidth saving is meaningful, especially across mobile traffic on slower networks.

The savings vary by image type. Photographic content benefits most. Graphics with hard edges and limited color palettes benefit less, since both AVIF and WebP are tuned for photographs. For these cases, the file size difference may be smaller, but AVIF still typically wins. The pattern is to default to AVIF for everything, then measure and verify rather than make assumptions about specific image categories.

Why Does Google PageSpeed Insights Now Prefer AVIF Over WebP?

Because AVIF produces smaller files at equivalent quality across most photographic content, which directly improves Largest Contentful Paint and reduces total transfer size. Both metrics matter for Core Web Vitals. Google's PageSpeed Insights tool now explicitly flags JPEGs as a performance opportunity and recommends AVIF in its suggestions, which is a meaningful shift from the WebP-first guidance of 18 months ago.

The implication for Webflow sites is that the audit reports clients see in PageSpeed Insights now actively recommend AVIF migration. If the site is still serving JPEGs, the report flags it. Clients who run their own Lighthouse audits before talking to a Partner often arrive with the AVIF recommendation already in hand, which means the conversation skips the convincing step and goes straight to implementation. The Partner who has the AVIF pipeline ready to go captures the work without needing to sell it.

Where Does Webflow's Built-In Image Optimization Stop and a CDN Take Over?

Webflow's built-in image optimization handles automatic resizing, compression, and WebP conversion for images uploaded through the Designer or Asset Manager. It does not yet serve AVIF natively, which means Webflow sites depending only on built-in optimization miss the AVIF benefit entirely. A CDN-level transformation step is needed to bridge the gap.

The CDN options include Cloudflare Polish (which Webflow's hosting infrastructure already runs on top of after the migration), Cloudinary, Imgix, and Sharp-based custom solutions through Webflow Cloud. Cloudflare Polish is the easiest fit because it runs at the same layer as Webflow's hosting and can be configured to serve AVIF to supporting browsers automatically. The work is configuration, not custom development. I covered the broader infrastructure migration story in what the April 14 Webflow incident taught me about hosting resilience.

How Do You Wire Up the Picture Element Inside a Webflow Rich Text Field?

The picture element pattern uses HTML directly inside a Webflow Embed component placed within the Rich Text content. The element wraps the image with multiple source tags pointing to AVIF, WebP, and JPEG variants in priority order, with type attributes telling the browser which format each source is. Browsers pick the first format they support, with JPEG as the universal fallback.

The Webflow implementation needs CDN URLs for each format. If you are using Cloudflare Polish, the same source URL works for all three formats with the appropriate format suffix. If you are using a separate CDN like Cloudinary, the URLs differ per format and need to be templated correctly inside the Embed. The setup takes about 30 minutes to template the first time and is reusable across all rich text content from that point forward. The cost saving compounds across every page that uses the pattern.

What Is the Right Fallback Chain for Users on iOS 15 and Old Samsung Internet?

The fallback chain is AVIF first, WebP second, JPEG last. Users on browsers that do not support AVIF (a small slice mostly on older iOS and older Samsung Internet versions) get WebP, which has near-universal support. The few remaining users on browsers without WebP support fall back to JPEG. The chain handles every realistic browser without breaking image rendering anywhere.

For Webflow sites with international traffic that includes large mobile audiences in regions with older devices, the fallback chain matters more than for a US-only site. Older Samsung Internet versions persist in some markets longer than Android Chrome lifecycles would suggest, and the JPEG fallback ensures the experience does not break. The fallback adds payload only for the small percentage of users who need it, which is exactly how progressive enhancement should work.

How Does AVIF Actually Move LCP Scores on a Webflow Site in Field Data?

Switching from JPEG to AVIF typically reduces image payload by 40 to 60 percent and improves LCP measurably, especially on mobile networks where the image is the LCP element. The 2025 Web Almanac reports that 56 percent of desktop pages and 48 percent of mobile pages pass all three Core Web Vitals, with LCP being the second most commonly failed metric. Image format optimization moves the needle for sites currently failing LCP.

The field data improvement varies. Sites where the LCP element is text typically see smaller improvements because text rendering is not the bottleneck. Sites where the LCP element is a hero image see larger improvements because the image transfer time was the bottleneck. For a typical Webflow marketing site with a strong hero image, the LCP improvement after AVIF migration is usually 200 to 600 milliseconds on mobile, which often moves the site from failing to passing the 2.5 second threshold.

When Is JPEG XL Going to Be Relevant and Should You Wait for It?

JPEG XL stable Chrome support is targeted for the second half of 2026, after Chrome Canary 145 shipped a Rust-based decoder in late 2025. Current JXL support sits at roughly 14.7 percent globally according to dev.to data. Apple already supports JXL in Safari 17 and later. The format has technical advantages over both AVIF and WebP, including lossless compression and progressive decoding, but the support gap is still too large for production use today.

The honest guidance is to ship AVIF now and watch JXL adoption through 2026 and 2027. JXL will probably become a third option in the picture element fallback chain over the next 18 to 24 months, sitting at the top of the priority order for browsers that support it. Adding it later is a small migration. Waiting for JXL today and shipping JPEG in the meantime gives up real performance value for a future format that has not arrived yet. Ship AVIF now. Add JXL later when the support data justifies it.

What Are the Common Mistakes Partners Make When Adopting AVIF?

Four mistakes. Compressing AVIF too aggressively, which produces visible artifacts on flat colors and gradients despite the small file size. Using a single AVIF source without a WebP fallback, which breaks images on the small slice of browsers without AVIF support. Failing to test the fallback chain on actual older devices, which catches problems that desktop testing misses. And not measuring the LCP improvement, which loses the data point that justifies the work to the client.

The fifth mistake is more strategic. Migrating images to AVIF without simultaneously updating the image strategy on the site. AVIF compounds with smart cropping, responsive image sizing, and lazy loading discipline. Sites that ship AVIF without these other fundamentals miss most of the available performance budget. Pair the AVIF migration with a broader image audit, and the cumulative impact is much larger than the format change alone. The discipline is in finishing the full pipeline, not just the format swap.

What Should Webflow Partners Do This Week if They Are Still Shipping JPEGs?

Three steps. First, audit one client site to identify how many images are still JPEG and what the cumulative payload looks like across the homepage and three highest-traffic pages. The number is usually larger than expected. Second, configure Cloudflare Polish or your preferred CDN to serve AVIF to supporting browsers, with a WebP and JPEG fallback chain. Third, measure the LCP improvement after migration and document the numbers as a case study you can use in client conversations.

The fourth step is to update your standard project template to default to the AVIF pipeline for every new client engagement. The marginal cost of including AVIF support in a new project is essentially zero once the template is built, and the performance benefit compounds across every site you ship. The Partners who default to AVIF in 2026 will outperform Partners who treat it as an opt-in upgrade. The leverage is in changing the default, not in litigating each project. The opportunity cost of waiting is real, even if it does not feel urgent on any single project.

If you are running a Webflow practice still shipping JPEGs as the default and want help configuring the AVIF pipeline cleanly, drop me a line and tell me what your image hosting setup looks like today. Let's chat.

Get your website crafted professionally

Let's create a stunning website that drive great results for your business

Contact

Get in Touch

This form help clarify important questions in advance.
Please be as precise as possible as it will save our time.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.