惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Create Responsive Video That Doesn't "Jump" During...
Nick Benksim · 2026-05-27 · via DEV Community

Nick Benksim

The Jumpy Video Nightmare: Let's Fix It Over Coffee

Picture this: you are peacefully reading an article on your phone, your thumb hovers over a link, and just as you tap, the entire page jumps down. You end up clicking a random ad, and your blood pressure spikes. Sound familiar? That, my friend, is Cumulative Layout Shift (CLS) in action, and one of the absolute worst offenders is the responsive HTML5 video element.

When a browser parses your HTML, it doesn't instantly know the dimensions of a video file that is still downloading. So, it renders the video container with a height of 0 pixels. Once the metadata finally loads, the browser suddenly realizes, "Ah, this is a 16:9 video!" and violently pushes the content down to make room. Today, we are going to fix this once and for all. Grab your coffee, and let's dive into how we can build buttery-smooth, responsive videos that never jump.

How We Suffered Before (The Dark Ages of CSS Hacks)

Before modern CSS came to the rescue, we had to rely on a clever but deeply annoying workaround known as the "Padding-Bottom Hack" or the "Intrinsic Ratio Method". If you wanted a responsive 16:9 video, you couldn't just throw a video tag into your markup and call it a day.

Instead, we had to wrap our video in a helper div, set that div's position to relative, set its height to zero, and then apply padding-bottom: 56.25% (which is 9 divided by 16 multiplied by 100). Then, we had to absolutely position the video inside that wrapper, stretching it to 100% width and height. It looked something like this:

/* The old, clunky wrapper hack */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

Sure, it worked perfectly, but it felt dirty. It cluttered our HTML with extra markup and made maintenance a nightmare. If you wanted to optimize your page performance even further, managing these hacky wrappers alongside complex layout rules was a recipe for headaches. Speaking of performance, if you want to master how these layout shifts and asset loads impact your site's speed, check out our guide on How to Optimize LCP with Proper Critical CSS Loading.

The Modern Way in 2026: Elegant, Native CSS

Thankfully, the web has evolved. Today, we have the incredibly powerful aspect-ratio property, which is supported by all modern browsers. This property allows us to ditch the wrapper wrapper divs entirely and set the desired ratio directly on the video element.

But there is a catch! To prevent the layout shift *before* the CSS file even loads, we should also use a brilliant browser feature: layout hints. If you provide native width and height attributes directly on the HTML <video> tag, modern browsers will calculate the aspect ratio automatically and allocate the correct space on the screen instantly, even before a single line of CSS or video data is fetched.

Combine these HTML attributes with CSS aspect-ratio and object-fit, and you get a bulletproof, responsive, jump-free video. To understand how to handle scaling and prevent video distortion inside its container, you should definitely read up on the Secrets of the object-fit property for perfect images in a grid, as the exact same principles apply to video elements.

The Ready-to-Use Code Snippet

Here is the clean, modern, and production-ready way to implement a responsive video that keeps your layout perfectly stable from the very first millisecond.

<!-- HTML -->
<div class="video-container">
  <video 
    width="1920" 
    height="1080" 
    controls 
    preload="metadata" 
    poster="poster-placeholder.jpg">
    <source src="awesome-video.mp4" type="video/mp4">
    Your browser does not support the video tag.
  </video>
</div>

<style>
/* CSS */
.video-container {
  max-width: 800px; /* Or whatever your layout demands */
  margin: 2rem auto;
  width: 100%;
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
  /* Use aspect-ratio to enforce the space explicitly */
  aspect-ratio: 16 / 9;
  /* Ensure the video content scales beautifully without distortion */
  object-fit: cover;
  background-color: #1a1a1a; /* Placeholder color while loading */
  border-radius: 8px;
}
</style>

Common Beginner Mistakes to Avoid

Even with these modern tools, it is easy to make a few mistakes that will bring back the dreaded layout jumps. Keep these three traps in mind:

  • Omitting width and height attributes in HTML: Many devs think, "I have CSS, why do I need HTML attributes?" Remember, the browser needs those attributes to calculate the aspect ratio *before* your CSS file loads. Never omit them.
  • Forgetting the poster image: If your video has a delay in loading, a blank space can look broken. Always provide a poster attribute. It acts as a visual placeholder and keeps the layout visually grounded.
  • Setting height to fixed pixels: Never do height: 400px while width: 100% is active unless you want a squished, distorted video. Always let height: auto and aspect-ratio do the heavy lifting together.

And there you have it! By combining native HTML dimension attributes with CSS aspect-ratio, you can bid farewell to jumpy layouts and keep your users happy. Implement this in your next project, and watch your Cumulative Layout Shift scores drop to a beautiful, green zero.

🔥 We publish more advanced CSS tricks, ready-to-use snippets, and tutorials in our Telegram channel. Subscribe so you don't miss out!