DevBolt
Processed in your browser. Your data never leaves your device.

16:9 Aspect Ratio Guide

16:9 is the most common widescreen aspect ratio, used for HD video, YouTube, computer monitors, and modern TVs. This guide covers its standard resolutions, use cases, and how to work with it in web development.

Home/Aspect Ratio Calculator

Aspect Ratio Calculator

Calculate, convert, and resize aspect ratios for images, video, and responsive design.

Enter Dimensions

Result

16:9
Aspect Ratio
1.7778
Decimal
1920 × 1080
aspect-ratio: 16 / 9;

Common Aspect Ratios

Equivalent Sizes at 16:9

WidthHeightPixelsLabel
3201800.1 MP
4802700.1 MP
6403600.2 MP
7684320.3 MP
9605400.5 MP
10245760.6 MP
12807200.9 MP720p / HD
14408101.2 MP
16009001.4 MP
192010802.1 MP1080p / Full HD
256014403.7 MP1440p / 2K
384021608.3 MP2160p / 4K UHD

Standard 16:9 resolutions

The 16:9 ratio produces these standard resolutions: 640×360 (nHD), 1280×720 (720p / HD), 1920×1080 (1080p / Full HD), 2560×1440 (1440p / 2K QHD), 3840×2160 (2160p / 4K UHD), and 7680×4320 (8K). These are used across YouTube, streaming services, gaming, and broadcast television. The ratio means for every 16 units of width, there are 9 units of height — a decimal ratio of approximately 1.7778.

/* Common 16:9 resolutions */
/* Width × Height */
 640 × 360    /* nHD */
 854 × 480    /* FWVGA */
1280 × 720    /* HD / 720p */
1600 × 900    /* HD+ */
1920 × 1080   /* Full HD / 1080p */
2560 × 1440   /* QHD / 2K */
3840 × 2160   /* UHD / 4K */

/* Calculate height from width */
/* height = width × 9 / 16 */
const height = Math.round(1920 * 9 / 16); // 1080

/* CSS */
.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
}

Using 16:9 in CSS

Use the CSS aspect-ratio property: aspect-ratio: 16 / 9. For responsive video embeds, combine with width: 100% and overflow: hidden on a container. The old padding-top hack (padding-top: 56.25%) still works for legacy browser support, since 9 ÷ 16 = 0.5625 = 56.25%. For images, add object-fit: cover to fill the container without distortion.

When to use 16:9 vs other ratios

Use 16:9 for: YouTube videos, website hero sections, desktop wallpapers, presentations, and any widescreen content. Consider 4:3 for classic presentations or iPad displays, 1:1 for social media posts, 9:16 for vertical mobile video (Stories, Reels, Shorts), and 21:9 for cinematic or ultrawide content.

Frequently Asked Questions

What resolution is 16:9 at 1080p?

1080p in 16:9 is 1920×1080 pixels, also known as Full HD. The 'p' stands for progressive scan lines — 1080 lines of vertical resolution at a 16:9 width-to-height ratio.

Is 2560×1440 a 16:9 ratio?

Yes. 2560÷1440 = 1.7778, which equals 16÷9. This resolution is called 1440p or QHD (Quad HD) and is exactly four times the pixel count of 720p.

How do I make a 16:9 container in CSS?

Use the aspect-ratio property: .container { aspect-ratio: 16 / 9; width: 100%; }. For older browsers, use the padding-top hack: .container { padding-top: 56.25%; position: relative; } with the content positioned absolutely inside.

Related Inspect Tools