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

HTML에서 요소의 높이를 추가하는 방법은 무엇입니까?


높이 사용 요소의 높이를 설정하는 HTML 속성 , , , ,

예시

다음 코드를 실행하여 높이 를 구현할 수 있습니다. 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>