Skip to content
1440px

3:4 Aspect Ratio

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

Portrait classic · portrait
3:4 = 0.75

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

Where 3:4 is used

Portrait tablet screens, portrait-orientation photography.

Simply 4:3 rotated. Standard for anything shot vertically on a 4:3 sensor.

3:4

Rendered live with aspect-ratio: 3 / 4.

3:4 resolutions

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

Exact 3:4 pixel dimensions
ResolutionWidthHeightMegapixelsStandard
162 × 2161622160.03
165 × 2201652200.04
168 × 2241682240.04
171 × 2281712280.04
174 × 2321742320.04
177 × 2361772360.04
180 × 2401802400.04
480 × 6404806400.31
720 × 9607209600.69
960 × 128096012801.23
1080 × 1440108014401.56
1200 × 1600120016001.92
1440 × 1920144019202.76
1920 × 2560192025604.92
3840 × 51203840512019.66
7680 × 1024076801024078.64

Using 3:4 in CSS

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

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

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

Devices with a 3:4 screen

DeviceNative resolutionCSS viewportDiagonal
iPad Pro 13″ (M5)2064 × 27521032 × 137613″
iPad Air 13″ (M4)2048 × 27321024 × 136613″
iPad Pro 13″ (M4)2064 × 27521032 × 137613″
iPad Air 13″ (M3)2048 × 27321024 × 136613″
iPad Air 13″ (M2)2048 × 27321024 × 136613″
iPad Pro 12.9″ (6th)2048 × 27321024 × 136612.9″
iPad Pro 12.9″ (5th)2048 × 27321024 × 136612.9″
iPad Pro 12.9″ (4th)2048 × 27321024 × 136612.9″
iPad Pro 12.9″ (3rd)2048 × 27321024 × 136612.9″
iPad (9th gen)1620 × 2160810 × 108010.2″

Questions about 3:4

What resolution is 3:4?

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

What is 3:4 used for?

Portrait tablet screens, portrait-orientation photography.

How do I set 3:4 in CSS?

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

What is 3:4 the other way round?

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

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

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