Aspect ratio is the proportional relationship between width and height. Whether you're resizing images, setting video dimensions, or designing for screens, getting the ratio right prevents distortion.

โšก Try It Free โ€” No Signup

Works instantly in your browser. No account, no install.

Open Aspect Ratio Calculator โ†’

What Is Aspect Ratio?

Aspect ratio is expressed as width:height. A 1920ร—1080 image has an aspect ratio of 16:9 (both numbers divided by their GCD of 120). Maintaining aspect ratio when resizing prevents images from appearing stretched or squished.

Common Aspect Ratios

RatioCommon UseExample Resolution
16:9HD video, most monitors1920ร—1080, 3840ร—2160
4:3Old TV, iPad1024ร—768, 2048ร—1536
1:1Instagram, avatars1080ร—1080
9:16TikTok, Instagram Stories1080ร—1920
21:9Ultrawide monitors2560ร—1080
3:2DSLR cameras, MacBook3456ร—2304

Calculate Missing Dimension

If you know a 1920ร—1080 image and want to resize to 1280 wide, maintaining 16:9:

New Height = 1280 ร— (1080 / 1920) = 720px

The calculator does this automatically โ€” fill in 3 of the 4 fields.

CSS Aspect Ratio

/* Modern CSS โ€” maintain 16:9 */
.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* Legacy padding trick */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 9/16 = 0.5625 */
  height: 0;
}

Frequently Asked Questions

How do I calculate aspect ratio from dimensions?
Divide both dimensions by their Greatest Common Divisor (GCD). For 1920ร—1080: GCD is 120, so 1920/120 = 16, 1080/120 = 9 โ†’ 16:9.
What aspect ratio is my phone screen?
Most modern smartphones use 19.5:9 or 20:9 (taller than 16:9). Notch and rounded corners are excluded from the ratio.
Can aspect ratio be a decimal?
Yes โ€” 2.39:1 (cinema) and 1.85:1 (widescreen) are common film ratios expressed as decimals.
Why does my cropped image look wrong?
Cropping changes both the content and the aspect ratio. Use the calculator to find the correct crop dimensions before applying.

Ready to try it?

Free, instant, and runs entirely in your browser.

Open Aspect Ratio Calculator โ†’