Skip to main content
RatioCalc

2:1 Aspect Ratio Calculator

2:1 double-wide — banners, headers and the Univisium cinema proposal.

2:1 (18:9) is the clean double-wide. X/Twitter header (~1500×500), Facebook cover and many site hero banners are effectively 2:1 or very close. It is also the Univisium framing proposal — a compromise between 1.33 and 2.39. Width is exactly twice height, so mental math is trivial but off-by-a-few-pixels headers still crop faces.

:

1920 × 960

Exact ratio: 2:1 · CSS: aspect-ratio: 2 / 1 · padding-top fallback: 50.00%

Formula

height = width × 1 ÷ 2

width = height × 2 ÷ 1

// padding-top fallback: 50.00% — keeps layout stable before the image loads

aspect-ratio: 2 / 1 — modern replacement for the padding hack

All math runs locally in your browser. No upload. Type either side, the other solves live — and the URL updates so you can share an exact pair (?w=1920&rw=2&rh=1) or bookmark a preset.

Common 2:1 resolutions

WidthHeightUse
320px160px
640px320px
1280px640px
1920px960px
2560px1280px
3840px1920px4K
5120px2560px
7680px3840px

Exact known sizes in this ratio

When to use 2:1

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 2 / 1; width: 100%; overflow: hidden; }
.frame > img { width: 100%; height: 100%; object-fit: cover; }

Legacy padding hack (for very old browsers):

.wrap { position: relative; width: 100%; padding-top: 50.00%; }
.wrap > * { position: absolute; inset: 0; }

Pair with object-fit: contain to letterbox without cropping, or cover to fill and crop safely.

Platform reference

YouTube thumbnail — 1280 × 720 (16:9)
YouTube Shorts — 1080 × 1920 (9:16)
Instagram feed post — 1080 × 1350 (4:5)
Instagram story — 1080 × 1920 (9:16)
TikTok video — 1080 × 1920 (9:16)
X/Twitter card — 1200 × 675 (16:9)

Frequently asked

What size is a 2:1 banner at 1200 wide?

1200×600 — height is exactly half the width.

Is 2:1 the same as 18:9?

Yes. Multiply 2:1 by 9 → 18:9. Same ratio, different notation.

What is Univisium?

Cinematographer Vittorio Storaro’s proposal that all content be framed at 2:1 as a universal compromise.

Tip: add ?w=1920 or ?h=1080 to this URL to prefill the calculator — useful for linking from a spec doc.

Other ratios

Look up by resolution

What aspect ratio is 1920×1080? → · Full FAQ →

Privacy: ratio math never leaves your browser. No account, no upload — the pair you type stays on-device. Shareable URLs encode only dimensions, never personal data.