Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

반응형 동영상 플레이어에 CSS 너비 속성 사용

<시간/>

동영상 플레이어를 반응형으로 만들려면 너비 속성을 사용하고 100%로 설정하세요.

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content="width=device-width, initial-scale=1.0">
         <style>
            video {
               width: 100%;
               height: auto;
            }
         </style>
   </head>
   <body>
      <video width = "300" controls autoplay>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
      </video>
      <p>To check the effect, you need to resize the browser.</p>
   </body>
</html>