Skip to content
T
Tools.Town
Free Online Tools for Everyone
Design Tools

Aspect Ratios Explained: 16:9, 4:3, and How Resizing Works

A practical guide to aspect ratios — what 16:9 and 9:16 mean, how to resize images without distortion, and how to use the CSS aspect-ratio property.

23 June 2026 4 min read By Tools.Town Team Fact Checked

Key Takeaways

  • It's the ratio of width to height: 16 units wide for every 9 tall
  • Keep the aspect ratio constant
  • Yes

What an aspect ratio actually is

An aspect ratio is the proportional relationship between an image’s width and its height, written as two numbers separated by a colon — like 16:9 or 4:3. It describes shape, not size. A 16:9 frame is the same shape whether it’s a tiny 320×180 thumbnail or a giant 3840×2160 display; all that changes is the scale.

This distinction trips people up constantly. “What size should my image be?” and “what shape should it be?” are different questions. The aspect ratio answers the second, and once you’ve fixed the shape, any one dimension determines the other. That’s the whole basis of resizing without distortion, and it’s exactly what the Aspect Ratio Calculator automates.

The ratios you’ll meet

16:9

Widescreen video, YouTube, most monitors and TVs. The default landscape ratio.

9:16

Vertical video — Reels, TikTok, Shorts, and Stories. 16:9 turned on its side.

1:1

Square. Profile pictures and some feed posts where a balanced crop works best.

4:3

Classic displays, many cameras, and presentation slides. Taller than 16:9.

Two more show up often: 21:9, the ultrawide and cinematic crop, and 3:2, the native ratio of most DSLR cameras and a lot of print sizes. Knowing which platform expects which ratio saves you from awkward auto-crops that lop off heads and logos.

How resizing without distortion works

Here’s the rule: to keep an image looking right, the new dimensions must share the same ratio as the original. Stretch only one dimension and everything inside gets squashed or elongated — faces go wide, circles become ellipses.

The math is simple cross-multiplication:

new height = new width × (original height ÷ original width)

For a 1920×1080 image you want at 1280 wide:

1280 × (1080 ÷ 1920) = 1280 × 0.5625 = 720

So 1280×720 preserves the 16:9 shape perfectly. The Aspect Ratio Calculator does this both ways — give it the new width and it solves the height, or give it the height and it solves the width.

1. Enter original

Type the current width and height, or pick a preset.

2. Read the ratio

See the simplified ratio, decimal, and orientation.

3. Set one new size

Choose whether you know the new width or new height.

4. Get the match

The other dimension is solved to keep proportions.

How the simplest ratio is found

When you enter 1920×1080, how does the tool know it’s 16:9 and not, say, 1920:1080? It divides both numbers by their greatest common divisor (GCD) — the largest number that divides both evenly. For 1920 and 1080 the GCD is 120, so:

1920 ÷ 120 : 1080 ÷ 120 = 16 : 9

If two dimensions share no common factor (a coprime pair, like 1921×1080), the ratio can’t be reduced and is shown as-is. That’s still correct — it just isn’t a tidy textbook ratio.

The decimal form (width ÷ height) is handy for comparisons: 16:9 is about 1.78, 4:3 is about 1.33, and 1:1 is exactly 1. A bigger decimal means a wider frame.

Aspect ratio in CSS

Modern CSS has an aspect-ratio property that keeps an element proportional as it scales — perfect for responsive video embeds, image placeholders, and cards. You feed it the simplified ratio:

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
}

The browser then computes the height automatically from the width, at any screen size, with no padding-hack required. The Aspect Ratio Calculator gives you exactly the 16 / 9-style figure to drop in, so you don’t have to reduce the fraction by hand.

Common mistakes to avoid

  • Forcing the wrong ratio. Don’t cram a 4:3 photo into a 16:9 slot and stretch it — crop it instead, or add letterbox bars.
  • Mixing up width and height. 16:9 is landscape; 9:16 is portrait. Swapping them is the most common upload error for vertical video.
  • Trusting auto-crop. Platforms crop to their preferred ratio automatically, often badly. Resize to the right ratio yourself so the important parts stay in frame.

Where to go next

Aspect ratio is the foundation; the next steps are usually cropping and resizing the actual pixels. Once you know the target ratio, use the Image Cropper to crop to it and the Image Resizer to scale to exact dimensions. To learn more about building a coherent look for a design, the Colour Palette Generator guide is a good companion.

Start by finding your ratio in the Aspect Ratio Calculator — it’s instant and runs entirely in your browser.

Advertisement

Try Aspect Ratio Calculator — Free

Apply what you just learned with our free tool. No sign-up required.

Try Aspect Ratio Calculator

Frequently Asked Questions

What does 16:9 mean?
It's the ratio of width to height: 16 units wide for every 9 tall. It doesn't fix the size — 1280×720, 1920×1080, and 3840×2160 are all 16:9.
How do I resize an image without stretching it?
Keep the aspect ratio constant. Decide one new dimension and let the other follow the original proportions. For a 1920×1080 image at 1280 wide, the height must be 720.
Can I use the ratio in CSS?
Yes. The simplified ratio, like 16 / 9, goes straight into the CSS aspect-ratio property to keep elements proportional without fixed pixel heights.

Was this guide helpful?

Your feedback helps us improve our content.

Continue Reading

All Design Tools Guides

Get the best Design Tools tips & guides in your inbox

Join 25,000+ users who get our weekly design tools insights.