Skip to content
1440px

2:1 Aspect Ratio

Exact 2:1 resolutions, the CSS you need, and where the ratio actually shows up.

Univisium · landscape
2:1 = 2

Smallest whole-pixel size 2 × 1. In CSS: aspect-ratio: 2 / 1. Rotated it becomes 9:18.

Where 2:1 is used

Univisium, some streaming originals, ultrawide phone video.

Proposed by cinematographer Vittorio Storaro as a compromise that works on both cinema and television.

2:1

Rendered live with aspect-ratio: 2 / 1.

2:1 resolutions

Every size below is exactly 2:1 — no rounding. Sizes marked as a standard are named display resolutions.

Exact 2:1 pixel dimensions
ResolutionWidthHeightMegapixelsStandard
320 × 1603201600.05
480 × 2404802400.12
640 × 3206403200.2
720 × 3607203600.26
800 × 4008004000.32
960 × 4809604800.46
1080 × 54010805400.58
1200 × 60012006000.72
1280 × 64012806400.82
1440 × 72014407201.04
1600 × 80016008001.28
1920 × 96019209601.84
2048 × 1024204810242.1
2560 × 1280256012803.28
3200 × 1600320016005.12
3840 × 1920384019207.37
5120 × 25605120256013.11
7680 × 38407680384029.49

Using 2:1 in CSS

CSS
/* Modern — one line */
.box { aspect-ratio: 2 / 1; }

/* With a fixed width */
.box { width: 100%; max-width: 800px; aspect-ratio: 2 / 1; }

/* Legacy padding-top hack, if you still need it */
.box-legacy { position: relative; }
.box-legacy::before { content: ""; display: block; padding-top: 50%; }
.box-legacy > * { position: absolute; inset: 0; }

Questions about 2:1

What resolution is 2:1?

2:1 is a ratio, not a fixed resolution — any size where width ÷ height equals 2 qualifies. The smallest whole-pixel pair is 2 × 1, and common ones include 640 × 320, 720 × 360, 800 × 400, 960 × 480.

What is 2:1 used for?

Univisium, some streaming originals, ultrawide phone video.

How do I set 2:1 in CSS?

Use the aspect-ratio property: aspect-ratio: 2 / 1;. The element then keeps that shape at any width. It is supported in every current browser.

What is 2:1 the other way round?

Rotated to portrait it becomes 9:18 — the same shape, turned 90 degrees.

How do I calculate a 2:1 height from a width?

Multiply the width by 0.5. For example 1080 × 0.5 = 540. The calculator does it both directions.

Other aspect ratios

All resolutions on this page are computed directly from the ratio, so every pair is exact. See methodology.