- HTML 教程
- HTML 教程
- HTML - 简介
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块和内联元素
- HTML - 样式表
- HTML - 文本格式化
- HTML - 引用
- HTML - 注释
- HTML - 颜色
- HTML - 图像
- HTML - 图像映射
- HTML - iframe
- HTML - 短语标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表格标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 电子邮件链接
- HTML 颜色名称和值
- HTML - 颜色名称
- HTML - RGB 和 RGBA 颜色
- HTML - 十六进制颜色
- HTML - HSL 和 HSLA 颜色
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 标头
- HTML - 头部
- HTML - 网站图标
- HTML - JavaScript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - CSS布局
- HTML - 响应式网页设计
- HTML - 特殊符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - 画布
- HTML API 接口
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSockets
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 杂项
- HTML - 数学标记语言
- HTML - 微观数据
- HTML - 索引数据库
- HTML - Web 消息传递
- HTML - CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - Web 幻灯片台
- HTML 工具
- HTML - 二维码
- HTML - Modernizr
- HTML - 验证器
- HTML 备忘单
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 代码参考
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- HTML - ISO 语言代码
- HTML - 字符编码
- HTML - 已弃用的标签和属性
HTML - height 属性
HTML height 属性用于指定元素的垂直尺寸。我们还可以在 CSS 中使用 height 作为属性来指定元素的高度。
此属性对于保持元素的纵横比和确保统一的设计至关重要。通过管理内容中项目的视觉呈现,Web 开发人员可以控制高度属性以创建像素完美的布局并改善用户体验。
语法
<tag height = 'value'></tag>
任何 CSS 度量值都将被接受为高度属性值。
适用于
下面列出的元素允许使用 HTML height 属性
元素 | 描述 |
---|---|
<img> | HTML <img> 标签用于在网页中呈现图像。 |
<canvas> | HTML <canvas> 用于使用JavaScript绘制图形。 |
<embed> | HTML <embed> 标签用作外部应用程序和多媒体的容器。 |
<iframe> | HTML <iframe> 是一个内联框架,允许我们在当前 HTML 文档中嵌入另一个文档。 |
<input> | HTML <input> 用于接受用户的各种类型的输入。 |
<object> | HTML<object>标签用于在网页上展示多媒体,包括音频、视频、图片、网站、PDF和Flash。 |
<video> | HTML <video>用于在网页中呈现视频 |
HTML height 属性的示例
以下示例将说明 HTML height 属性,我们应该在哪里以及如何使用此属性!
设置图像元素的高度
所有图像都有自己的高度,但我们可以根据需要使用 HTML height 属性设置高度。在此示例中,我们将使用 px(像素)单位设置图像高度。您可以使用任何您感到舒适的测量单位。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' attribute</title>
</head>
<body>
<h3>
Example of the HTML 'height' Attribute
</h3>
<p>
Here you can see the same image with different height value,
as we did not set the width attribute so the width is adujusted
based on height of the image.
</p>
<!--HTML 'height' attribute-->
<strong>Image with 50px height</strong>
<br>
<img src="html/images/html-mini-logo.jpg" height="50px">
<br>
<strong>Image with 100px height</strong>
<br>
<img src="html/images/html-mini-logo.jpg" height="100px">
</body>
</html>
设置输入元素的高度
在以下示例代码中,我们将使用 input 标签来渲染图像并在输入元素中设置图像的高度。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' attribute</title>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
In this example we set the width also so
the image can render on fixed dimension 350*100(w*h).
</p>
<!--HTML 'height' attribute-->
<strong>Image with 100px height</strong>
<br>
<input type="image" src="/html/images/html-mini-logo.jpg"
height="100px" width="350px">
</body>
</html>
设置对象元素的高度
让我们看一下以下示例,我们将在其中使用 object 元素的 height 属性。我们创建了一个图像对象来测试对象元素上的高度属性。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' Attribute</title>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
Here we did not mention any unit but you
can as per the need, without the unit it
measure in px(pixels).
</p>
<!--HTML 'height' attribute-->
<strong>Object with 300 height</strong>
<br>
<object data=
"https://www.plus2net.com/php_tutorial/images/pdf-student-table.PNG"
height="300">
</object>
</body>
</html>
设置 canvas 元素的高度
在此示例中,我们将使用 HTML height 属性为 canvas 元素创建一个 canvs 并设置高度。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' Attribute</title>
<style>
canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
We have created a canvas 400*200 and using
JavaScript to fill the color by mentioning the coords
</p>
<!--HTML 'height' attribute-->
<canvas id="myCanvas" width="400" height="200">
</canvas>
<script>
const canvas = document.getElementById('myCanvas');
const ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(30, 50, 335, 100);
</script>
</body>
</html>
设置 iframe 元素的高度
在这里,我们使用 height 属性设置 iframe 元素的高度,并渲染出 HTML 教程登录页面。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' Attribute</title>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
We have created an iframe 400*400 and
rendering HTML landing page
</p>
<!--HTML 'height' attribute-->
<iframe src="/html/index.htm" width="450" height="400">
</body>
</html>
设置嵌入元素的高度
在此示例中,我们将嵌入 HTML 教程登录页面,并使用 height 属性调整嵌入元素的高度
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' Attribute</title>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
We have embedded an image and
rendering the image in 300*100
</p>
<!--HTML 'height' attribute-->
<embed type="image/jpg" src="html/images/html.jpg"
width="300" height="100">
</body>
</html>
设置视频元素的高度
在此示例中,我们包含了一个视频,并使用 height 属性设置视频元素的高度。可能是由于链接断开或访问问题,视频无法播放。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML 'height' Attribute</title>
</head>
<body>
<h3>Example of the HTML 'height' Attribute</h3>
<p>
We have included a video and
rendering the video in 320*240
</p>
<!--HTML 'height' attribute-->
<video width="320" height="240" controls>
<source src=
"https://cdn.pixabay.com/vimeo/165221419/ipad-2988.mp4?width=640&hash=4816e81143efa7f31f1e8c86c5605f43fdfac941"
type="video/mp4">
</body>
</html>
支持的浏览器
浏览器 | |||||
---|---|---|---|---|---|
是否支持 | Yes | Yes | Yes | Yes | Yes |