CSS 定位 – 绝对、相对、固定和粘性

ID:15496 / 打印

css 定位 – 绝对、相对、固定和粘性

第 11 讲:css 定位 – 绝对、相对、固定和粘性

欢迎来到《从基础到辉煌》课程第十一讲。在本次讲座中,我们将探讨css定位的不同类型:相对绝对固定粘性。了解定位可以让您控制元素在页面上的显示位置以及用户与内容交互时元素的行为方式。


1.了解位置属性

position 属性指定元素在文档中的位置。它可以采用以下值:

  • 静态:默认值。元素根据正常文档流定位。
  • 相对:元素相对于其正常位置定位。
  • 绝对:元素相对于其最近的定位祖先或初始包含块进行定位。
  • 固定:元素相对于浏览器窗口定位,并在滚动时保持在相同位置。
  • 粘性:元素被视为相对元素,直到达到阈值(例如滚动位置),然后它变得固定。

2.相对定位

具有position:relative的元素相对于其原始(静态)位置定位。它保留在文档流中,这意味着其他元素仍会考虑它。

  • 示例:使用相对定位来移动元素。
  .box {     position: relative;     top: 20px; /* moves the box 20px down from its normal position */     left: 30px; /* moves the box 30px to the right */   } 

在此示例中,元素从原始位置向下移动 20px,向右移动 30px,但保留其在文档流中的空间。

立即学习“前端免费学习笔记(深入)”;


3.绝对定位

位置为绝对的元素将从文档流中删除,并相对于其最近的定位祖先(即位置不是静态的祖先)进行定位。

  • 示例:将元素绝对定位在容器内。
  .container {     position: relative; /* this container is the reference for the absolute positioning */     width: 300px;     height: 200px;     background-color: #f4f4f4;   }    .box {     position: absolute;     top: 50px;     right: 20px;     background-color: #333;     color: white;     padding: 10px;   } 

在此示例中:

  • .box 绝对位于距离顶部 50 像素、距离右侧 20 像素 .container 元素内部。
  • .container 具有position:relative,使其成为.box 的定位参考。

4.固定定位

位置为固定的元素相对于浏览器窗口定位,无论页面如何滚动。

  • 示例:创建固定导航栏。
  .navbar {     position: fixed;     top: 0;     left: 0;     width: 100%;     background-color: #333;     color: white;     padding: 15px;     text-align: center;   } 

在此示例中:

  • .navbar 位于视口顶部,即使页面滚动也保持固定。

5.粘性定位

具有position: sticky 的元素被视为相对元素,直到用户滚动超过定义的阈值,此时它变得固定。

  • 示例:滚动后保留在顶部的粘性标题。
  .header {     position: sticky;     top: 0;     background-color: #333;     color: white;     padding: 10px;   } 

在此示例中:

  • .header 的行为就像普通元素一样,直到它到达页面顶部。之后,它会粘在顶部并在用户滚动时保持可见。

6. z-索引

当元素被定位(相对、绝对、固定或粘性)时,您可以使用 z-index 属性控制它们的堆叠顺序。较高的 z-index 值使元素出现在较低的元素之上。

  • 示例:控制堆叠顺序。
  .box1 {     position: absolute;     top: 50px;     left: 50px;     z-index: 1; /* lower z-index */     background-color: #f4f4f4;     padding: 20px;   }    .box2 {     position: absolute;     top: 80px;     left: 80px;     z-index: 2; /* higher z-index */     background-color: #333;     color: white;     padding: 20px;   } 

在此示例中:

  • 由于 z-index 值较高,.box2 将出现在 .box1 上方。

7.结合定位技术

您可以组合定位值来创建高级布局。

  • 示例:修复了具有相对内容区域的侧边栏。
  .sidebar {     position: fixed;     top: 0;     left: 0;     width: 200px;     height: 100vh;     background-color: #333;     color: white;     padding: 20px;   }    .content {     position: relative;     margin-left: 220px; /* Account for the fixed sidebar */     padding: 20px;   } 

在此布局中:

  • .sidebar 固定在页面左侧并在滚动时保持可见。
  • .content 区域相对定位并调整其边距以适应侧边栏。

练习运动

  1. 创建一个具有固定页眉和页脚的网页,并对内容使用相对和绝对定位。
  2. 添加滚动时固定的粘性侧边栏。

下一步:在下一堂课中,我们将深入探讨css 变换和动画,您将在其中学习如何轻松为 web 元素设置动画。准备好让您的设计充满活力和互动!


在 linkedin 上关注我
里多伊·哈桑

上一篇: Tailwind CSS 与 Vanilla CSS:何时在 Web 开发项目中使用每种 CSS
下一篇: 使用 React 构建歌词查找器应用程序

作者:admin @ 24资源网   2024-10-18

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。