&"/> &">

首頁  >  文章  >  web前端  >  如何在HTML中加入元素的高度?

如何在HTML中加入元素的高度?

WBOY
WBOY轉載
2023-09-11 20:13:021076瀏覽

如何在HTML中加入元素的高度?

使用 HTML 中的 height 屬性來設定元素的高度。您可以將該屬性與下列元素一起使用 - 如何在HTML中加入元素的高度?

範例

您可以嘗試執行以下程式碼來在 HTML 中實作 height 屬性 -

<!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中加入元素的高度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除