Skip to content
1440px

2:3 Aspect Ratio

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

Portrait photo · portrait
2:3 = 0.6667

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

Where 2:3 is used

Pinterest pins, portrait 35 mm photography, poster prints.

Pinterest explicitly recommends it, and it matches the portrait orientation of a standard camera frame.

2:3

Rendered live with aspect-ratio: 2 / 3.

2:3 resolutions

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

Exact 2:3 pixel dimensions
ResolutionWidthHeightMegapixelsStandard
320 × 4803204800.15
480 × 7204807200.35
640 × 9606409600.61
720 × 108072010800.78
800 × 120080012000.96
960 × 144096014401.38
1080 × 1620108016201.75
1200 × 1800120018002.16
1280 × 1920128019202.46
1440 × 2160144021603.11
1600 × 2400160024003.84
1920 × 2880192028805.53
2048 × 3072204830726.29
2560 × 3840256038409.83
3200 × 48003200480015.36
3840 × 57603840576022.12
5120 × 76805120768039.32
7680 × 1152076801152088.47

Using 2:3 in CSS

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

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

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

Devices with a 2:3 screen

DeviceNative resolutionCSS viewportDiagonal
iPhone 4s640 × 960320 × 4803.5″
iPhone 4640 × 960320 × 4803.5″

Questions about 2:3

What resolution is 2:3?

2:3 is a ratio, not a fixed resolution — any size where width ÷ height equals 0.6667 qualifies. The smallest whole-pixel pair is 2 × 3, and common ones include 640 × 960, 720 × 1080, 800 × 1200, 960 × 1440.

What is 2:3 used for?

Pinterest pins, portrait 35 mm photography, poster prints.

How do I set 2:3 in CSS?

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

What is 2:3 the other way round?

Rotated to landscape it becomes 3:2 — the same shape, turned 90 degrees.

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

Multiply the width by 1.5. For example 1080 × 1.5 = 1620. 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.