Hero image size guide for websites
How large hero images should be before responsive resizing, and how to avoid giant full-bleed assets that slow the page down.
Hero image size pages are only useful when they explain both dimension and delivery. A raw pixel number without a performance budget is not enough.
Good baseline
1600 × 900 px source target
Common ratio
16:9
Watch closely
LCP weight and crop safety
Recommendation
Start around 1600 × 900 for a standard full-width editorial hero, then resize responsively. Use a larger source only when the design genuinely spans very wide screens or needs deliberate art direction.
How to think about hero assets
- Design for the largest intentional crop, not the theoretical biggest monitor.
- Ship multiple responsive widths instead of one oversized universal file.
- Treat the hero as an LCP asset and budget it accordingly.
Hero image with a clear responsive width ladder
<img
src="hero-1200.webp"
srcset="hero-640.webp 640w, hero-960.webp 960w, hero-1200.webp 1200w, hero-1600.webp 1600w"
sizes="(min-width: 1280px) 1200px, 100vw"
alt="Editorial hero"
width="1600"
height="900"
/>Why this reference exists
The query is common, but the answer has to stay conditional. The useful baseline is a ratio, a source target, and a responsive-delivery rule.
Checklist
- Start with a 16:9 source around 1600 × 900 unless the design needs more.
- Generate responsive widths instead of one universal hero asset.
- Keep the key subject inside a safe crop area.
- Treat the hero like an LCP asset, not decorative wallpaper.
Common mistakes
- Uploading 3000-pixel hero images for layouts that never render them that large.
- Using a single crop that breaks on mobile and desktop alike.
- Ignoring the hero’s impact on LCP because it “looks good.”
Quick answers
What is a good hero image size for websites?
A 1600 × 900 source is a strong starting point for many 16:9 hero layouts, as long as it is delivered responsively.
Should every hero image be full-screen sized?
No. The asset should match the actual layout and crop needs, not the largest possible screen.
Related pages
Reference
Open Graph image size guide
The practical dimensions, aspect ratio, and file-prep rules for social share images that need to preview cleanly.
Use Case
Best image format for blog images
How to choose the right format for editorial hero images, in-article visuals, and share previews.
Framework Guide
Next.js image optimization guide
How to ship responsive images in Next.js with sane remote patterns, right-sized assets, and predictable LCP behavior.
From the archive
Decoding the Pixels: The Ultimate Guide to Ideal Image Dimensions for Web and Mobile (2025 Update)
Find ideal image dimensions for web & mobile. Master responsive techniques & optimization (WebP/AVIF) for sharp, fast visuals on all devices.
Understanding Image Resizing: Basics and Benefits
Boost site speed & SEO with top image resizing & optimization tools: master JPEG, PNG, WebP compression, automation, quality tips, audits & metrics.
Image Optimization Best Practices: How Image CDNs Transform Website Performance
Discover essential image optimization techniques and how Image CDNs boost website speed, user experience, and SEO rankings for optimal web performance.