📅  最后修改于: 2023-12-03 15:31:15.774000             🧑  作者: Mango
HTML中的
<video height="height_value">
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
高度属性的值可以是任何指定单位的数值,如像素(px)或百分比(%)。默认值为auto,即由浏览器自行确定大小。
以下示例演示如何使用高度属性定义
<video controls height="360">
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
在此示例中,
高度属性是