如何在 HTML 中增加元素的高度?
在 HTML 中使用 height 属性设置元素的高度。可以将该属性与以下元素一同使用:<canvas>、<embed>、<img>、<input>、<video> 等。
示例
可以尝试运行以下代码在 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>
广告