Advertisement
MizunoBrasil

Youtube Responsivo

Jan 16th, 2024
1,017
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <style>
  2.         .responsive-video {
  3.             position: relative;
  4.             padding-bottom: 56.25%; /* Proporção 16:9 */
  5.             height: 0;
  6.             overflow: hidden;
  7.         }
  8.         .responsive-video iframe {
  9.             position: absolute;
  10.             top: 0;
  11.             left: 0;
  12.             width: 100%;
  13.             height: 100%;
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18.     <div class="responsive-video">
  19.         <iframe src="https://www.youtube.com/embed/ URL DO VIDEO" frameborder="0" allowfullscreen></iframe>
  20.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement