To make an embedded video scale with the device size in Webflow, you need to ensure it maintains a responsive aspect ratio. Follow these steps to accomplish this:
1. Use Webflow’s Embed Element
- Add a Video Embed or Embed element in Webflow.
- Paste your iframe embed code (e.g., from YouTube or Vimeo).
2. Adjust the Embed Container
- Wrap the Embed element inside a Div Block.
- Give the Div Block a custom class (e.g.,
"video-wrapper"
). - Set its width to 100% and adjust the height dynamically.
3. Apply a Responsive Aspect Ratio
- Select the "video-wrapper" Div.
- Add Custom CSS in Webflow’s Page or Site Settings using the Embed Code section:
```css
.video-wrapper {
position: relative;
width: 100%;
padding-bottom: 56.25%; /_ 16:9 Aspect Ratio _/
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
``` - This ensures the video scales proportionally based on its container’s width.
4. Alternative: Webflow's Built-In Responsive Video
- If using a Video Element (instead of an iframe embed), Webflow automatically makes it responsive.
- Just set its width to 100% under the Style panel.
Summary
To make an embedded video responsive, wrap it in a Div Block, apply CSS for a flexible aspect ratio, or use Webflow’s built-in video scaling. This ensures the video adjusts dynamically across devices.