Quick answer
As of 2026, WebP is supported by 96-97% of browsers: Chrome, Firefox, Edge, Opera, brave, Safari 16+, and most mobile browsers. Exceptions: Safari 15, Outlook, very old Android phones.
WebP became viable for production websites around 2021, but adoption has been slower in older browsers. Here is the current state of support.
Desktop browser support
- Chrome: 100% support since 2012.
- Firefox: 100% support since version 65 (Jan 2019).
- Edge: 100% support since version 18 (Feb 2020).
- Safari: supported since version 16 (Sept 2022). Safari 15 and earlier do not support WebP.
- Opera: 100% support since version 12.1 (2012).
- Brave: 100% support (Chromium-based).
- Outlook (Windows): no WebP support. Email clients do not display WebP.
Mobile browser support
- Chrome Mobile (Android): 100% support on Android 5+.
- Firefox Mobile: 100% support.
- Safari Mobile (iOS): supported on iOS 14.4+ (March 2021). iOS 14.3 and earlier do not support WebP.
- Android Browser: supported on Android 5+ (Lollipop, June 2014). Older Android 4.x devices do not support WebP.
- Samsung Internet: 100% support.
Rule of thumb: any device updated within the last 5 years supports WebP.
How to check support on your site
Most analytics show "unsupported browsers" as less than 3-5% of traffic. If your visitors are primarily on modern devices:
- Check your Google Analytics for oldest OS versions (iOS 13, Android 4, Windows 7).
- If these are below 1% of traffic, using WebP with a PNG fallback is safe.
- If these are above 3%, keep serving JPG or PNG as the primary format.
Safe deployment: the picture element
To support both WebP and fallback formats:
<picture> <source srcset="image.webp" type="image/webp"> <source srcset="image.png" type="image/png"> <img src="image.jpg" alt="description"> </picture>
Modern browsers load WebP, older browsers fall back to PNG or JPG. Works in all browsers.
Email and PDF: do not use WebP
If images are embedded in emails or PDFs:
- Outlook (Windows, Mac, web) does not support WebP.
- Most PDF readers do not support WebP.
- Always use JPG or PNG for email attachments and embedded PDFs.
At-a-glance comparison
| Browser/App | WebP support | Min version | Notes |
|---|---|---|---|
| Chrome (desktop) | Yes | v12 (2012) | 100% support |
| Firefox (desktop) | Yes | v65 (Jan 2019) | 100% support |
| Safari (desktop) | Yes (partial) | v16 (Sept 2022) | Safari 15 and older do not support |
| Edge (desktop) | Yes | v18 (Feb 2020) | 100% support |
| Chrome Mobile (Android) | Yes | Android 5 | Built-in |
| Safari (iOS) | Yes | iOS 14.4 | iOS 14.3 and older do not support |
| Outlook | No | N/A | Use JPG or PNG instead |
| Gmail | Yes | Modern versions | Supports WebP in inbox display |