WebP Browser Support in 2026: Exact Versions for Chrome, Safari, Firefox & Edge

You're about to switch your site's images to WebP and the question that stops you is the same one that's stopped developers for over a decade: will it actually work for everyone who visits the site? A few years ago that question had a real answer — Safari didn't support WebP, and a meaningful slice of your traffic would simply see broken images. Today the picture has changed dramatically, but old worries die hard, and a lot of teams are still adding fallback code for a problem that's mostly solved.

The honest answer requires knowing exactly which browser versions support WebP, since when, and where the small remaining gaps actually are — because "basically every browser" and "every browser" are different claims, and the difference matters if even a sliver of your traffic comes from older devices or corporate environments. WebP itself is no longer just a Google side-project either: the IETF formalized it as RFC 9649 in November 2024, which is worth knowing if anyone ever asks whether WebP is a "real" open standard or just a proprietary Google format.

Quick Answer

Yes — WebP is supported by every major browser in 2026: Chrome 32+, Firefox 65+, Edge 18+, Opera 19+, Samsung Internet 4+, and Safari 14+ on iOS and macOS. Together they cover roughly 97-99% of global browser traffic. The only notable gaps are Internet Explorer, which never added support, and Safari versions older than 14. For nearly all sites, WebP is safe to use directly, with a JPEG fallback as cheap insurance for the remaining edge cases.

Chrome
32+
Firefox
65+
Edge
18+
Safari (iOS)
14+
Safari (macOS)
14+
Opera
19+
Internet Explorer
Never

What "browser support" actually means for WebP

A browser "supporting" WebP means it can natively decode the .webp file format and display it in an <img> tag, a CSS background-image, or inside a <picture> element — without any plugin, polyfill, or extra code. WebP is a raster image format Google built on top of the VP8 video codec it acquired with On2 Technologies, and it ships with the .webp file extension and the image/webp MIME type. In November 2024 the IETF formally standardized it as RFC 9649, which turned WebP from "a format Google documents" into a citable internet standard — though the reference encoder and decoder (libwebp) remain a Google-maintained open-source project.

WebP support isn't partial in the way some web features are: once a browser adds full support, it typically supports all of WebP's core capabilities at once — lossy compression, lossless compression, alpha transparency, and animation — in a single release, rather than rolling features out gradually. Chrome, Firefox, and Edge all followed this all-or-nothing pattern. Safari is the one partial exception worth knowing about: Safari 14 through 15 handles standard lossy WebP reliably, while some lossless and animated WebP edge cases weren't fully ironed out until Safari 16 shipped alongside macOS Ventura in 2022 — so if your site leans heavily on animated or lossless WebP and a chunk of your Mac traffic is still on Big Sur or Monterey, it's worth spot-checking there specifically.

The practical question, then, isn't "does WebP work" in the abstract — it's which specific browser versions your actual visitors are running, since support was added at meaningfully different times across browsers, spanning 2014 for Chrome to 2020 for Safari.

WebP support browser by browser

Here's exactly when each major browser added WebP, and what changed along the way.

Chrome

Chrome was first to support WebP, shipping lossy-only support in its early releases and reaching full support — lossy, lossless, alpha transparency, and animation — by Chrome 32 in 2014. That covers Windows, macOS, Linux, ChromeOS, and Android. Chrome for Android has carried WebP support since essentially its earliest Play Store builds, so Android traffic on Chrome is a non-issue.

Firefox

Firefox added WebP in Firefox 65, released in January 2019, across Windows, macOS, Linux, and Android. Unlike Chrome's gradual rollout, Mozilla shipped lossy, lossless, alpha, and animated WebP together in that same release, so feature detection in Firefox is effectively binary — if the version supports WebP at all, it supports all of it.

Safari

Safari was the last major holdout, and for years it was the entire reason "is WebP safe to use" was a real question. Support arrived in Safari 14 on macOS Big Sur and iOS 14, both released in September 2020. That single release is what pushed WebP from "mostly supported" to "safe to use by default" globally. Full lossless and animated WebP playback became more consistent starting with Safari 16 on macOS Ventura in 2022 — so for animation-heavy or lossless-heavy use cases specifically, Safari 16+ is the safer bar to target, even though basic lossy WebP has worked since version 14. Safari 13 and earlier do not support WebP in any form.

Microsoft Edge

Edge added WebP support in Edge 18 (2018) — coinciding with Edge's move to a Chromium base, which is also why it inherited Chrome's mature WebP implementation rather than building its own from scratch. The legacy EdgeHTML-based Edge (versions 12–17) did not support WebP, but that engine has been fully retired for years, so it's not a realistic concern for current traffic.

Opera and Samsung Internet

Opera added full WebP support in Opera 19 (2014), shortly after Chrome, since Opera also runs on Chromium's Blink engine. Samsung Internet has supported WebP since version 4, and on Galaxy devices it's one of the formats the browser actively negotiates for via the HTTP Accept header — meaning Samsung Internet users often receive WebP automatically even without explicit <picture> markup, as long as your server handles content negotiation.

Internet Explorer

Internet Explorer never added WebP support, in any version from IE 5.5 through IE 11. Microsoft has officially retired Internet Explorer, so in practice the only traffic still affected is legacy corporate, government, or kiosk software that hasn't migrated off it — environments that, notably, also won't self-select away from your site the way a consumer would.

📊 Quick stat As of 2026, WebP enjoys over 97% global browser support — meaning at least 97 out of every 100 visitors to a typical website can see WebP images natively, without any fallback at all. On mobile-first, consumer-modern audiences that figure often reaches 99%.

Why browser support matters before you switch

Getting this wrong doesn't show up in testing on your own modern laptop — it shows up quietly, in production, for users you'll never directly observe:

Step-by-step: how to safely roll out WebP

  1. Check your own traffic data first. Before worrying about global averages, look at your site's analytics for browser and OS version breakdowns. If your audience skews modern — which most does in 2026 — your real-world WebP support is likely at or above the global 97% figure.
  2. Convert your images to WebP. Use a design tool with native export (modern Photoshop 23.2+, Figma, GIMP) or a dedicated converter. Lossy WebP at quality 75–85 mirrors the JPEG sweet spot; use lossless WebP for graphics that currently live as PNG.
  3. Add a fallback using the <picture> element. This lets the browser request the WebP source first and silently fall back to JPEG or PNG if WebP isn't supported — no JavaScript required, and zero visible difference to the end user either way.
  4. Use srcset for a lighter-weight alternative. If <picture> feels heavy for your workflow, the <img srcset> pattern achieves the same effect with less markup, letting supporting browsers pick WebP and others fall back automatically.
  5. Decide separately about email. Don't reuse your web image pipeline for email campaigns. Keep email images as JPEG or PNG unless you've specifically tested WebP rendering across your actual recipient list's email clients.
  6. Test on real browser versions, not just current ones. Tools like BrowserStack, LambdaTest, or caniuse.com let you verify rendering on older Safari or legacy Edge builds if a meaningful chunk of your traffic still uses them.
  7. Monitor after launch. Check server logs or a real-user-monitoring tool for image load failures after rollout. This catches edge cases (specific corporate proxies, embedded browsers, older devices) that synthetic testing can miss.
Try the Rebrixe Image Converter — free Convert JPEG or PNG to WebP, with automatic fallback-ready output. No uploads, runs in your browser.
Convert an Image →

How to check if a browser supports WebP

You don't need to guess or rely on parsing a user-agent string — the most reliable check loads a tiny WebP image directly and asks the browser whether it decoded successfully. Here's a snippet you can drop straight into a script or browser console:

JavaScript — feature detection
function supportsWebP(callback) {
  const img = new Image();
  img.onload = () => callback(img.width === 2 && img.height === 1);
  img.onerror = () => callback(false);
  img.src =
    "data:image/webp;base64,UklGRhoAAABXRUJQVlA4TA0AAAAvAAAAEAcQERGIiP4HAA==";
}

supportsWebP((isSupported) => {
  console.log("WebP supported:", isSupported);
});

In production you rarely need to run this yourself, though — the <picture> element does the same job natively, with no script execution or layout shift:

HTML — automatic fallback
<picture>
  <source srcset="photo.webp" type="image/webp">
  <img src="photo.jpg" alt="Description of the photo">
</picture>

The browser requests photo.webp if it can decode WebP, and quietly falls back to photo.jpg if it can't — no JavaScript, no flash of missing content, no extra request in supporting browsers. If the JavaScript snippet above logs false on a browser you expect to support WebP, check that the data URL isn't being blocked by a Content Security Policy that restricts img-src to https-only sources.

Common mistakes that break images for some users

1. Switching to WebP with no fallback at all

With 97%+ support, it's tempting to skip the fallback entirely. But for the remaining visitors — Internet Explorer in corporate settings, very old Safari on unsupported Macs — the image simply doesn't load. A <picture> fallback costs almost nothing to add and eliminates this risk completely.

2. Assuming WebP works the same way in email as on the web

Web browser support and email client support are entirely separate ecosystems. Many email clients, including several Outlook versions and older embedded webviews, render WebP unreliably or not at all. Treating an email template like a web page is a common source of broken newsletter images.

3. Using JavaScript feature-detection when it's not needed

Checking WebP support with a JavaScript canvas or Image test was once a reasonable approach, but with native browser support this universal, it's usually unnecessary overhead for production. The <picture> element handles the same fallback logic natively — save the JS snippet for debugging, not for shipping.

4. Forgetting that "supported" doesn't mean "identical everywhere"

Even within supporting browsers, older minor versions sometimes have rendering quirks with animated or lossless WebP — Safari before version 16 is the main example. If your site relies heavily on animated WebP for critical UI, spot-check on a few older supported versions, not just the latest release, and keep a static poster frame as backup.

💡 Pro tip If you're unsure whether to add a fallback: ask whether your traffic includes any corporate, government, education, or older-device audiences. If yes, add the <picture> fallback. If your audience is consumer-modern, the fallback is still good practice but the risk without one is genuinely small.

Real-world examples

How WebP support actually plays out across different real-world scenarios:

Consumer e-commerce site
Modern device-heavy traffic
~99% supported
Mobile-first audience on recent iOS/Android browsers sees near-universal WebP support.
Enterprise / B2B portal
Corporate network traffic
~90-95% supported
Legacy IE or locked-down browser policies in some corporate environments lower the figure.
Email newsletter
Mixed email client base
Inconsistent
Best practice: skip WebP for email entirely, use JPEG or PNG until support stabilizes.
Global content site
Worldwide general audience
97%+ supported
Matches the global average; a lightweight fallback covers the remaining ~3%.

The pattern across all of these: WebP support is high enough almost everywhere that it's safe to adopt as a primary format, but the size of the small remaining gap — and whether it's worth a fallback — depends entirely on who actually visits your site.

WebP vs JPEG vs PNG vs AVIF

WebP, JPEG, PNG, and AVIF all serve images on the web, but they differ on compression, transparency, animation, and browser reach. This is where the version numbers above actually matter in practice.

Dimension WebP JPEG PNG AVIF
Standards body Google, IETF RFC 9649 Joint Photographic Experts Group W3C, ISO/IEC 15948 Alliance for Open Media
Lossy compression ~25-34% smaller than JPEG Baseline Not applicable ~50% smaller than JPEG
Lossless compression ~26% smaller than PNG Not supported Baseline lossless Smaller than PNG and WebP lossless
Alpha transparency Lossy and lossless Not supported Lossless only Lossy and lossless
Animation Yes, replaces GIF and APNG Not supported APNG variant only Yes
Browser reach (2026) Chrome 32+, Firefox 65+, Edge 18+, Safari 14+ Every browser ever shipped Every browser since IE7 Chrome 85+, Firefox 93+, Safari 16.4+
Best fit Default modern web format, transparency + animation Universal fallback, legacy device coverage UI graphics, screenshots, lossless transparency Max compression on modern-only audiences

See the full WebP vs JPEG breakdown → and the WebP vs PNG comparison → for deeper dives on either pairing.

Known issues and edge cases

WebP is supported in every major browser, but real-world delivery still has a few rough edges worth planning around.

Convert your images to WebP right now — free

The Rebrixe Image Converter runs entirely in your browser. Convert JPEG or PNG to WebP, or go the other direction for compatibility testing — your images are never uploaded to a server. No account, no file size limit, no watermarks.

Free Image Converter — no uploads required Client-side only. Your files never leave your device.
Open Image Converter →

Frequently asked questions

Almost all. WebP is supported by every major browser — Chrome 32+, Firefox 65+, Edge 18+, Opera 19+, Samsung Internet, and Safari 14+ — covering roughly 97-99% of global browser traffic in 2026. The remaining gap is Internet Explorer, which never added support, and Safari versions older than 14.
Yes. Safari added WebP in version 14 on macOS Big Sur and iOS 14, both released in September 2020 — the milestone that pushed WebP past 97% global support, since Safari was the last major holdout. Full lossless and animated WebP playback became more consistent from Safari 16 on macOS Ventura in 2022. Safari 13 and earlier do not support WebP at all.
Chrome was first, adding full WebP support (lossy, lossless, alpha, animation) by Chrome 32 in 2014. Opera followed with Opera 19 the same year. Edge added support in version 18 (2018) after switching to Chromium. Firefox added support in version 65 (January 2019). Safari was last, adding support in version 14 (2020).
Technically, with 97%+ global support, most sites can use WebP directly without breaking. But a JPEG or PNG fallback via the <picture> element costs almost nothing to add and protects the small remaining slice of users on Internet Explorer, ancient Safari versions, or some email clients. It's cheap insurance, not a strict requirement.
Inconsistently. Gmail's web interface and current Apple Mail display WebP, but several Outlook builds, corporate Exchange setups, and older embedded webviews do not render it reliably. For email campaigns, stick to JPEG or PNG, or test with a tool like Litmus first.
Without a fallback, the image simply fails to load or shows a broken image icon. With a <picture> element fallback, the browser automatically requests the JPEG or PNG source instead, and the user sees a normal image with no visible difference — just a slightly larger file.
Not yet. AVIF compresses somewhat better than WebP and its browser support has caught up significantly since Chrome 85 and Safari 16.4, but WebP remains simpler to work with and has broader tooling support across design software, CMS plugins, and CDNs. For most sites, WebP is still the safer default in 2026, with AVIF worth layering in for performance-critical, image-heavy pages.
Run a short JavaScript snippet that loads a tiny WebP image through the Image API and checks whether it decoded successfully — see the code example above. In production, the <picture> element handles the same fallback automatically without any script.
No. Internet Explorer never added WebP support in any version, including IE 11. Microsoft has retired Internet Explorer, so the only reason to plan around it is legacy corporate or government software still running it internally.

Sources

Version numbers and format details in this guide are drawn from these primary sources:

Convert your images to WebP in seconds

The Rebrixe Image Converter runs entirely in your browser — no uploads, no account, no file size limits. Your images never leave your device.

Launch the Image Converter →
← Back to blogs