Skip to main content
RatioCalc

4:3 vs 3:2

4:3 is 1.333:1, 3:2 is 1.500:1. Below are both frames at the same width and same height so you can see which is wider, how much letterboxing or pillarboxing each needs inside the other, and which to master for.

4:3 calculator -> · 3:2 calculator ->

Visual - same width (1920px)

4:3 - 1920x1440 - padding-top 75.00%

Scaled preview - 100.0% of max height at this width

3:2 - 1920x1280 - padding-top 66.67%

Scaled preview - 88.9% of max height at this width

At 1920 wide the height difference is 160px. Fitting the shorter inside the taller at this width leaves 80px bars top and bottom (letterbox). Fitting the taller inside the shorter leaves pillar bars on sides.

Same width table (1920px)

RatioHeightPairBar if fitted
4:31440px1920x1440reference
3:21280px1920x1280160px total (80 top/bottom)

Visual - same height (1080px)

4:3

4:3 88.9% of max width

3:2

3:2 100.0% of max width

Same height table (1080px)

RatioWidthPair
4:31440px1440x1080
3:21620px1620x1080

At 1080 tall the width difference is 180px - that is the pillarbox when fitting the narrower inside the wider at this height.

CSS to hold either frame

4:3:

.frame-a { aspect-ratio: 4 / 3; }
.frame-a img { object-fit: cover; } /* or contain to letterbox */

3:2:

.frame-b { aspect-ratio: 3 / 2; }
.frame-b img { object-fit: cover; }

Use object-fit: contain to preserve both frames with bars, cover to fill and crop.

When to use which

Other comparisons

Calculator -> · What ratio is 1920x1080? ->

Tip: ratio comparison is about width-for-height. The wider ratio always wins on width at same height, and loses on height at same width. That symmetry is why letterbox and pillarbox sizes are mirrors.