Skip to main content
RatioCalc

21:9 Ultrawide Calculator

Ultrawide monitors and panoramic captures. Enter one side; get the exact other.

21:9 is the marketing label for the ultrawide monitor class. True panels are usually 64:27 (≈2.37:1) at 2560×1080 or 3440×1440 (43:18) — close enough that 21:9 is the universal shorthand. Use the solver for monitor sizing, ultrawide wallpapers and letterboxed cinematic exports.

:

1920 × 823

Exact ratio: 7:3 · CSS: aspect-ratio: 21 / 9 · padding-top fallback: 42.86%

Formula

height = width × 9 ÷ 21

width = height × 21 ÷ 9

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

aspect-ratio: 21 / 9 — 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=21&rh=9) or bookmark a preset.

Common 21:9 resolutions

WidthHeightUse
320px137px
640px274px
1280px549px
1920px823px
2560px1097px
3840px1646px4K
5120px2194px
7680px3291px

When to use 21:9

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 21 / 9; 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: 42.86%; }
.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 is true 21:9 resolution?

2560×1080, 3440×1440 and 5120×2160 are the common 21:9 family (technically 64:27 / 43:18).

Is 21:9 good for work?

Great for timelines and side-by-side windows; less ideal if you share screen to 16:9 viewers.

How wide is 21:9 vs 16:9?

At the same height, 21:9 is 33% wider — that is why 34-inch ultrawides feel like a double monitor without a bezel.

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.