TL;DR — Responsive CSS videos adjust to different screen sizes and orientations. The width and max-width properties add responsiveness to video content.
Contents
Adding responsive videos
A responsive CSS video keeps quality and aspect ratio when you resize the window or change its orientation. You can set CSS width to scale videos responsively.
Setting the width to scale videos
The following example scales the video player. It becomes a responsive video after you set the width
property to 100%.
Note: the example above allows scaling up until the video becomes larger than its original size. It might cause quality issues when displayed on a bigger screen.
To prevent the responsive video from exceeding its original size, set the max-width
property to 100% (to enable the video to freely scale down but not up).
Responsive video embed
You might want to make youtube video responsive. Embedding of Youtube videos happens with the <iframe< element (tutorial here), but the embedded videos might not be responsive.
To add a responsive Youtube embed, you should add CSS properties to the HTML code as in the following code example:
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 0px;
height: 0;
overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
CSS video: useful tip
- Bootstrap also offers an option for adding responsive video embed by using the
.embed-responsive
class.