- 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 - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 位移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode 双向算法
- CSS - min-content
- CSS - all
- CSS - inset
- CSS - 隔离
- CSS - 滚动溢出
- CSS - justify-items
- CSS - justify-self
- CSS - tab-size
- CSS - pointer-events
- CSS - place-content
- CSS - place-items
- CSS - place-self
- CSS - max-block-size
- CSS - min-block-size
- CSS - mix-blend-mode
- CSS - max-inline-size
- CSS - min-inline-size
- CSS - offset
- CSS - accent-color
- CSS - user-select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层叠样式表
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多重背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - box-decoration-break
- CSS - caret-color
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - box-sizing
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特效性
- CSS - 自定义属性
- CSS 响应式
- CSS 响应式网页设计 - 简介
- CSS 响应式网页设计 - 视口
- CSS 响应式网页设计 - 网格视图
- CSS 响应式网页设计 - 媒体查询
- CSS 响应式网页设计 - 图片
- CSS 响应式网页设计 - 视频
- CSS 响应式网页设计 - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - 层叠样式表
CSS 层叠上下文是一个用于控制网页中不同 DOM 元素堆叠顺序的概念。**z-index** 属性决定了元素在一个堆叠上下文中的堆叠顺序。
z-index 值较高的元素会叠加在 z-index 值较低的元素之上;如果元素具有相同的 z-index 值,则它们的堆叠顺序取决于它们在 DOM 中的顺序。在本教程中,我们将更详细地介绍 CSS 层叠以及示例。
目录
使用 z-index 属性进行 CSS 层叠
如上所述,可以使用z-index 属性来决定网页中元素的堆叠顺序。下面的示例演示了如何使用 z-index 属性创建垂直堆叠的元素。z-index 值较高的元素会位于 z-index 值较低的元素之上。
示例
<html> <head> <style> div{ position: absolute; height: 100px; width: 100px; padding: 5px; color: white; } .box1 { background-color: darkred; z-index: 1; left: 10px; top: 10px; } .box2 { background-color: darkblue; z-index: 2; margin: 10px; left: 50px; top: 30px; } .box3 { background-color: darkgreen; z-index: 3; margin: 20px; left: 80px; top: 50px; } </style> </head> <body> <div class="box1"> z-index: 1 </div> <div class="box2"> z-index: 2 </div> <div class="box3"> z-index: 3 </div> </body> </html>
将文本层叠在图像之上
在 CSS 中,可以使用position 属性将文本定位在图像的不同位置之上。
首先,我们需要将图像容器的 position 属性设置为`position: relative`,并将文本的 position 属性设置为`position: absolute`。现在,您可以使用 CSS 的inset 属性(如 top、bottom、left 和 right)来定位文本元素。
示例
<html> <head> <style> .container { position: relative; border: 2px solid #ef2c2c; } .center { position: absolute; top: 45%; width: 100%; text-align: center; } .top-left { position: absolute; top: 12px; left: 30px; } .top-right { position: absolute; top: 12px; right: 30px; } .bottom-left { position: absolute; bottom: 12px; left: 30px; } .bottom-right { position: absolute; bottom: 12px; right: 30px; } img { width: 100%; opacity: 0.7; } </style> </head> <body> <div class="container"> <img src="/css/images/red-flower.jpg" width="1000px" height="350px"> <h3 class="center"> Text at Center </h3> <h3 class="top-left"> Text at Top Left </h3> <h3 class="top-right"> Text at Top Right </h3> <h3 class="bottom-left"> Text at Bottom Left</h3> <h3 class="bottom-right"> Text at Bottom Right </h3> </div> </body> </html>
不使用 z-index 属性进行定位
下面的示例演示了如何在不使用z-index 属性的情况下创建层。
示例
<html> <head> <style> div{ position: absolute; height: 100px; width: 100px; padding: 5px; color: white; } .box1 { background-color: darkred; padding: 10px; left: 10px; top: 10px; } .box2 { background-color: lightblue; padding: 10px; margin: 10px; left: 30px; top: 30px; } .box3 { background-color: yellow; padding: 5px; margin: 10px; left: 60px; top: 60px; } </style> </head> <body> <div class="box1"> Box 1 </div> <div class="box2"> Box 2 </div> <div class="box3"> Box 3 </div> </body> </html>
广告