Skip to main content
RatioCalc

1:2 Tall Portrait Calculator

1:2 tall portrait — twice as tall as wide. For narrow banners, door wraps and vertical signage.

1:2 (0.5:1) is the narrow tall strip: 600×1200, 900×1800 banners, door wraps, pillar signage and phone-screen mock split views. Height is exactly double width. The solver avoids the classic half-pixel rounding that leaves a 1px seam in signage prints.

:

1920 × 3840

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

Formula

height = width × 2 ÷ 1

width = height × 1 ÷ 2

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

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

Common 1:2 resolutions

WidthHeightUse
320px640px
640px1280px
1280px2560px
1920px3840px
2560px5120px
3840px7680px4K
5120px10240px
7680px15360px

Exact known sizes in this ratio

When to use 1:2

Pitfalls to avoid

CSS snippet

Modern:

.frame { aspect-ratio: 1 / 2; 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: 200.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 1:2 at 900 wide?

900×1800 — height doubles the width.

Is 1:2 the same as 9:18?

Yes — multiply both sides by 9. Same shape.

When should I use 1:2?

Narrow vertical formats: pillar banners, door wraps, or splitting a 1:1 square into two side-by-side tall strips.

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.