- CSS 教程
- CSS - 主页
- CSS - 简介
- CSS - 语法
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 边距
- CSS - 列表
- CSS - 填充
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS-Clearfix
- CSS-浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 位置
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 翻译
- CSS - 高度
- CSS - 宽度
- CSS - 不透明度
- CSS - Z 索引
- CSS - 底部
- CSS - 导航栏
- CSS - 叠加
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS-根
- CSS - 盒子模型
- CSS - 计数器
- CSS - 剪辑
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS 高级
- CSS-弹性盒
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 媒体类型
- CSS - 分页媒体
- CSS-听觉媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - 重要
- CSS3 教程
- CSS3 - 教程
- CSS3 - 圆角
- CSS3 - 边框图像
- CSS3 - 多背景
- CSS3 - 颜色
- CSS3 - 渐变
- CSS3 - 阴影
- CSS3 - 文本
- CSS3 - 网页字体
- CSS3 - 二维变换
- CSS3 - 3D 变换
- CSS3 - 动画
- CSS3 - 多列
- CSS3 - 用户界面
- CSS3 - 盒子尺寸
- CSS 响应式
- CSS - 响应式网页设计
- CSS 资源
- CSS - 有用的资源
- CSS - 讨论
CSS - 高度
CSS 高度属性
CSS height属性设置元素内容区域的高度。如果box-sizing设置为border-box,则属性height设置边框区域的高度。
height属性指定的值由min-height和max-height属性定义的值获取。
句法
CSS 允许以多种方式设置元素的高度。让我们检查所有可能的可用语法来设置元素的高度。
长度值
height: 120px; height: 10em; height: 100vh;
百分比值
height: 75%; height: 50%;
关键词值
height: auto; height: max-content; height: min-content; height: fit-content(20em);
全球价值
height: inherit; height: initial; height: revert; height: revert-layer; height: unset;
不接受像 height: -200px 这样的负值。
适用于
除不可替换的内联元素、表列和列组之外的所有 HTML 元素。
DOM语法
object.style.height = "100px";
CSS 高度 - 演示
尝试为 CSS height属性选择不同的值,并在右侧框中查看结果。
CSS 高度 - 长度值
CSS 允许将元素的高度设置为特定的长度值,例如像素 (px)、厘米 (cm)、英寸 (in) 等。以下是以长度单位向 div 元素添加高度的示例:
<html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; padding:10px; } div.a { height: 100px; background-color: rgb(230, 230, 203); } div.b { height: 1.5in; background-color: rgb(230, 230, 203); } </style> </head> <body> <div class="a">This div element has a height of 100px.</div> <div class="b">This div element has a height of 1.5 inches.</div> </body> </html>
CSS 高度 - 百分比值
CSS 允许将元素的高度设置为包含元素的高度的百分比。下面是以百分比值向 div 元素添加高度的示例:
<html> <head> <style> .parent{ border: 1px solid black; height: 100px; background-color: rgb(230, 230, 203); } .child{ border: 1px solid black; height: 80%; background-color: rgb(76 175 80); } </style> </head> <body> <div class="parent"> <div class="child"> <p>This div element has a 80% height of the parent.</p> </div> </div> </body> </html>
CSS 高度 - 自动值
以下是向设置为auto 的div 元素添加高度的示例。这里浏览器会根据内容自动计算高度。它是元素的默认高度。
<html> <head> <style> div.auto { height: auto; background-color: yellow; padding: 20px; margin-bottom: 5px; } </style> </head> <body> <div class="auto">This div element has a height set as auto.</div> </body> </html>
CSS 高度 - 最大内容/最小内容
这是高度等于max-content和min-content的示例。最大内容定义了固有的首选高度,而最小内容定义了固有的最小高度
<html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } div.c { height: max-content; background-color: bisque; } div.d { height: min-content; background-color: darkseagreen; } </style> </head> <body> <div class="c">This div element has a height as max-content. This div element has a height as max-content. This div element has a height as max-content. This div element has a height as max-content. This div element has a height as max-content.</div> <div class="d">This div element has a height of min-content.</div> </body> </html>
CSS高度-clamp()函数
这使得能够选择在最小和最大高度之间指定的值范围内的中间值。这是使用clamp()函数设置高度的示例:
<html> <head> <style> p{ display: inline-flex; border: 1px solid black; background-color: yellow; height: clamp(20px, 100px, 180px); width: clamp(50px, 100px, 200px); padding: 1em; margin: 2em; } </style> <body> <div> <p>The clamp function is used for height & width, where the background color is selected for the value between the min and max ranges of height and width.</p> </div> </body> </html>