Responsive iframes — The Right Way (CSS Only)! | Ben Marshall

PHOTO EMBED

Sat Nov 12 2022 22:21:47 GMT+0000 (Coordinated Universal Time)

Saved by @Shookthadev999 #css

.iframe-container {
  overflow: hidden;
  /* 16:9 aspect ratio */
  padding-top: 56.25%;
  position: relative;
}
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
content_copyCOPY

https://www.benmarshall.me/responsive-iframes/