Skip to content

Instantly share code, notes, and snippets.

View nightshft's full-sized avatar

Eric Hollaway nightshft

View GitHub Profile
@nightshft
nightshft / yt-embed-responsive.css
Created November 14, 2024 18:18
Use this to make YouTube embed codes responsive.
/* Place the iframe into a div with a class of "yt-container" */
.yt-container {
display: flex;
justify-content: center;
}
.yt-container iframe {
aspect-ratio: 16 / 9;
width: 100% !important;