Share

Responsive Youtube Embed | Make YouTube Videos Responsive

Responsive Youtube Embed | Make YouTube Videos Responsive


Responsive YouTube Video Embed

Have you ever tried to make a YouTube video responsive? If so, it can be somewhat tricky. I came across a small problem when adding a video from YouTube to one of my blog posts about the Childish Gambino website that we created.

Since this website is fully responsive, I needed the YouTube video to re-size depending on the browser size or device width. However, when I added the embed code, the video had a fixed height and width. (uggh!) This looked fine on desktop computers, but pretty much broke the design when viewing on a mobile device. I wanted to know how to make a youtube video mobile. Therefore, we needed a responsive YouTube video embed code.

One would think that videos that with 100% width would automatically resize to the surrounding container. Well, that is not the case. Surprisingly, Youtube does not automatically have a responsive embed code.

The fix was actually quite simple. Here’s how to make a youtube video mobile:

You will need to wrap the responsive youtube embed code with a div and specify a 50% to 60% padding bottom. Then specify the child elements (iframe, object embed) 100% width, 100% height, with absolute position. This will force the embed elements to expand fullwidth automatically. Awesome! Exactly what we need.

First you will need to add the following to your style sheet.

CSS

.wy{width:98%;max-width 640px;margin:0 auto;}
.youtube{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;}
.youtube iframe, .youtube object, .youtube embed{position:absolute;top:0;left:0;width:100%;height:100%;}

HTML

<div class="wy">
<div class="youtube">
<iframe width="560" height="315" src="https://www.youtube.com/embed/B51vaF50o8w" ...></iframe>
</div>
</div>

Now, if the responsive YouTube embed worked, your videos should be responsive and ready to view on Tablets and Mobile devices.

WEBMASTER CONTENT MANAGEMENT SERVICES

Share post: