Common Sizes for 16:9
| Width | Height | Name |
|---|
Solve for missing dimensions, simplify ratios, and look up platform sizes for YouTube, Instagram, TikTok, and more.
| Width | Height | Name |
|---|
An aspect ratio is the proportional relationship between an image or video's width and its height, written as two numbers separated by a colon. 16:9 means for every 16 pixels of width there are 9 pixels of height. Aspect ratios are dimensionless — 1920×1080 and 1280×720 are both 16:9 because they share the same proportion.
To scale an image while preserving its ratio, multiply both dimensions by the same scale factor. To find a proportional height for a new width: new height = (new width / original width) × original height.
Example: Scale 1920×1080 to a 1280-pixel wide version: 1080 × (1280 / 1920) = 1080 × 0.667 = 720 pixels. The result, 1280×720, maintains the 16:9 ratio.
The CSS aspect-ratio property (supported in all modern browsers since 2021) lets you declare an element's intended ratio without knowing both dimensions. Setting aspect-ratio: 16 / 9 on a container and giving it only a width causes the browser to calculate the correct height automatically. This replaces older padding-percentage hack techniques.