Skip to main content
RatioCalc

4:3 Aspect Ratio Calculator

Classic television, older iPads and retro gaming. Type either dimension to get the matching pair.

4:3 (1.33:1) was the television standard for half a century and still lives on iPad displays, CCTV sensors and retro games. 640×480, 1024×768 (XGA) and 1600×1200 (UXGA) are all 4:3. The math is forgiving — divide or multiply by 4/3 — but sizing a modern 16:9 layout for a 4:3 asset without cropping trips people constantly.

:

1920 × 1440

Exact ratio: 4:3 · CSS: aspect-ratio: 4 / 3 · padding-top fallback: 75.00%

Formula

height = width × 3 ÷ 4

width = height × 4 ÷ 3

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

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

Common 4:3 resolutions

WidthHeightUse
320px240px
640px480px
1280px960px
1920px1440px
2560px1920px
3840px2880px4K
5120px3840px
7680px5760px

Exact known sizes in this ratio

When to use 4:3

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 4 / 3; 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: 75.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 is 4:3 in pixels?

Common sizes: 640×480, 800×600, 1024×768, 1152×864, 1600×1200. Any width that is 4/3 of the height works.

Is iPad still 4:3?

The classic 9.7-inch iPad and iPad mini are 4:3 (1024×768 or 2048×1536). Newer iPad Pro 11″ is closer to 1.43:1 — check the exact panel.

How to letterbox 4:3 inside 16:9?

Center the 4:3 frame and fill side pillars, or use object-fit: contain with a 16:9 placeholder so nothing stretches.

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.