JSFiddle - React, Tailwind, and code Playground

code projects: embedding responsive youtubes

by jonchius

HTML

<div class="responsive-youtube">
    
    <iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PL9xmIrv3_LR63qn2LBagcrcSfXKYV8S-j&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
    
</div>

CSS

.responsive-youtube {
    position: relative;
    padding-bottom: 51.75%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.responsive-youtube iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

JavaScript

/* responsive youtube embed (no JS) */