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

HTML에서 요소의 너비 설정


너비 사용 요소의 너비를 설정하는 HTML 속성 , , , ,

예시

다음 코드를 실행하여 width를 구현할 수 있습니다. HTML의 속성 -

<!DOCTYPE HTML>
<html>
   <body>

      <video width="300" height="200" controls autoplay>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>

   </body>
</html>

출력

HTML에서 요소의 너비 설정