Miniatura de video incrustado con barras negras en móvil (Wistia)

Here’s a CSS solution that maintains the aspect ratio without a fixed height:

iframe[src*="wistia.net"] {
    aspect-ratio: 16 /9;
    height: auto;
}
2 Me gusta