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.
Aspect Ratio Calculator
Calculate, convert, and resize aspect ratios for images, video, and responsive design.
Enter Dimensions
Result
aspect-ratio: 16 / 9;Common Aspect Ratios
Equivalent Sizes at 16:9
| Width | Height | Pixels | Label |
|---|---|---|---|
| 320 | 180 | 0.1 MP | |
| 480 | 270 | 0.1 MP | |
| 640 | 360 | 0.2 MP | |
| 768 | 432 | 0.3 MP | |
| 960 | 540 | 0.5 MP | |
| 1024 | 576 | 0.6 MP | |
| 1280 | 720 | 0.9 MP | 720p / HD |
| 1440 | 810 | 1.2 MP | |
| 1600 | 900 | 1.4 MP | |
| 1920 | 1080 | 2.1 MP | 1080p / Full HD |
| 2560 | 1440 | 3.7 MP | 1440p / 2K |
| 3840 | 2160 | 8.3 MP | 2160p / 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
Code Complexity Analyzer
Analyze JavaScript and TypeScript code for cyclomatic complexity, cognitive complexity, nesting depth, and maintainability index with per-function metrics
GitHub Actions Validator
Validate GitHub Actions workflow YAML files for syntax, triggers, job structure, step config, needs dependencies, and deprecated actions
XPath Tester
Test XPath expressions against XML data with real-time evaluation — select elements, filter by attributes, navigate axes, and use XPath functions
SQL Playground
Run SQL queries in your browser with a full SQLite database powered by WebAssembly — practice JOINs, CTEs, window functions, aggregations, and more