calculatory.app

Aspect Ratio Calculator

Find the ratio of any dimensions, resize without distortion, and copy the CSS — with presets for every common format.

Original size

New size

Enter either value; the other is calculated to keep the same ratio.

Aspect ratio

16:9

HD video, most screens

16:9

Decimal

1.778:1

Orientation

Landscape

aspect-ratio: 16 / 9;

How the calculator works

The ratio is found by dividing width and height by their greatest common divisor, so 1920 × 1080 reduces to 16:9. Decimal inputs such as 1.85 × 1 are supported and reduce to whole-number ratios, here 37:20.

Resizing keeps the proportion exact: new height = new width × original height ÷ original width. Results are rounded to whole pixels, and when rounding changes the value the exact figure is shown underneath, so you know whether the resized image is truly proportional.

Many real resolutions are close to, but not exactly, a named ratio. The calculator always shows the true simplified ratio, then names the nearest standard format and how far off it is.

Common questions

How do you calculate an aspect ratio?

Divide the width and height by their greatest common divisor. For 1920 × 1080 the greatest common divisor is 120, so the ratio is 16:9. To resize while keeping the ratio, multiply the new width by the original height divided by the original width: 1280 × 1080 ÷ 1920 = 720.

What resolutions are 16:9?

Common 16:9 resolutions include 1280 × 720 (HD), 1920 × 1080 (Full HD), 2560 × 1440 (QHD) and 3840 × 2160 (4K UHD). 16:9 is the standard for online video, televisions and most computer and phone screens used in landscape.

Why does 1366 × 768 show 683:384 instead of 16:9?

Because it is not exactly 16:9. 1366 ÷ 768 is about 1.7786, while 16:9 is 1.7778, a difference of roughly 0.05%. The resolution is marketed as 16:9 because it is close enough to look identical. This calculator shows the true simplified ratio and tells you which standard ratio it is nearest to.

Is 21:9 ultrawide really 21:9?

Usually not. Ultrawide monitors sold as 21:9, such as 2560 × 1080, are mathematically 64:27, about 2.37:1, while true 21:9 is 2.33:1. The name is a rounded marketing label. When a layout or video must match a specific screen exactly, calculate from the actual pixel dimensions.

Which aspect ratio should I use for vertical video?

Vertical video for phones is 9:16, typically 1080 × 1920 pixels — the format used by stories and short-form video feeds. Portrait photos and feed posts often use 4:5, and square 1:1 remains the safest choice when one image has to fit many placements. Check each platform's current guidance, as recommended sizes change.

How do I set an aspect ratio in CSS?

Use the aspect-ratio property, for example aspect-ratio: 16 / 9, on an element with a set width. The browser calculates the height automatically, which prevents layout shift while images, videos and embeds load. This calculator gives you the simplified value ready to copy.

Gaurav Yadav

Built by Gaurav Yadav

Designer, author, and the one person behind Calculatory. Calculations run locally in your browser — nothing you enter is sent to a server. More about the project.

Last updated: September 2026