Skip to main content
RatioCalc

16:9 Aspect Ratio Calculator

The universal HD video and monitor standard. Enter one dimension — the other solves live.

16:9 is the dominant widescreen ratio: every HD television, most laptops, YouTube player, and game capture defaults to it. 1280×720 (HD), 1920×1080 (Full HD) and 3840×2160 (4K UHD) are all 16:9. Lock the ratio below, type either side, and copy the pair with the CSS you need to hold the frame without distortion or black bars.

:

1920 × 1080

Exact ratio: 16:9 · CSS: aspect-ratio: 16 / 9 · padding-top fallback: 56.25%

Formula

height = width × 9 ÷ 16

width = height × 16 ÷ 9

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

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

Common 16:9 resolutions

WidthHeightUse
320px180px
640px360px
1280px720px
1920px1080pxFull HD
2560px1440px
3840px2160px4K
5120px2880px
7680px4320px

Exact known sizes in this ratio

When to use 16:9

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 16 / 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: 56.25%; }
.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 resolutions are 16:9?

Any pair where w ÷ h = 1.777…: 640×360, 1280×720, 1920×1080, 2560×1440, 3840×2160 and any multiple of 16 by 9.

How do I keep 16:9 in CSS?

Put aspect-ratio: 16 / 9 on the container. Legacy fallback: padding-top: 56.25% on a wrapper with the content absolutely positioned.

Is 16:9 the same as 1.78:1?

Yes — 16÷9 ≈ 1.778, so cinema listings write 1.78:1. Both mean the same frame shape.

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.