首页 > 开发 > CSS > 正文

如何使用css定位html元素?(附示例)

2020-03-24 16:03:28
字体:
来源:转载
供稿:网友
在页面上定位内容时,可以使用少量属性来帮助操作元素的位置。本文将给你介绍一些使用CSS position 属性包含不同定位元素类型的示例。

要在元素上使用定位,必须首先声明其位置property,该位置指定用于元素的定位方法的类型。使用position属性值,使用top,bottom,left和right属性定位元素。它们的位置也取决于它们的位置值。(推荐课程:css视频教程)

定位值有五种类型:html' target='_blank'>static(静态的)、relative(相对的)、fixed(固定的)、absolute(绝对的)、sticky(黏性的)

static(静态的)

默认情况下,HTML元素定位为静态,元素根据文档的正常流程定位; 静态定位元素不受顶部,底部,左侧和右侧属性的影响。一个元素用position: static定位不会有其他特殊的定位方式。

用于将位置设置为静态的CSS是:

position: static;

接下来是使用静态位置值的示例:

 !DOCTYPE html  html  head  style body { color: WHITE; font: Helvetica; width: 420px;.square-set,.square { border-radius: 15px;.square-set { background: darkgrey;.square { position: static; background: Green; height: 70px; line-height: 40px; text-align: center; width: 90px; /style  /head  body  div >

效果如下:

360截图20181105094735142.jpg

relative(相对的)

该元素根据文档的正常流动位于相对于它的正常位置被定位,然后偏移相对于本身的基于上,右,下和左的值。偏移量不会影响任何其他元素的位置; 因此,页面布局中为元素给出的空间与位置是静态的相同。设置相对定位元素的顶部,右侧,底部和左侧属性将使其远离其正常位置进行调整。其他内容不会被调整以适应元素留下的任何空白。

用于将位置设置为相对的CSS是:

position: relative;

以下示例使用相对位置值:

 !DOCTYPE html  html  head  style body { color: white; font: Helvetica ; width: 420px;.square-set,.square { border-radius: 15px;.square-set { background: darkgrey;.square { background: green; height: 70px; line-height: 40px; position: relative;  text-align: center; width: 80px;.square-1 { top: 15px;.square-2 { left: 50px;.square-3 { bottom: -23px; right: 30px; /style  /head  body  div >

效果如下:

360截图20181105095023965.jpg

absolute(绝对的)

该元素将从普通文档流中删除,并且在页面布局中,不会为该元素创建空间。元素相对于最近定位的祖先定位,如果有的话; 否则,它相对于初始包含块放置,其最终位置由顶部,右侧,底部和左侧的值确定。

用于将位置设置为绝对的CSS是:

position: absolute;

具有position: absolute; 相对于最接近的祖先定位的元素。如果绝对定位元素没有定位祖先,它将使用文档正文,并与页面滚动一起移动。“定位”元素是其static位置的元素

以下例子强调元素的绝对位置:

 !DOCTYPE html  html  head  style .square-set { color: WHITE; background: darkgrey; height: 200px; position: relative; border-radius: 15px; font: Helvetica ; width: 420px;.square { background: green; height: 80px; position: absolute; width: 80px; border-radius: 15px; line-height: 60px;.square-1 { top: 10%; left: 6%;.square-2 { top: 5; right: -20px;.square-3 { bottom: -15px; right: 40px;.square-4 { bottom: 0; /style  /head  body  div >

效果如下:

360截图20181105095425516.jpg

fixed(固定的)

它从正常文档流中删除的元素,并且在页面布局中,没有为元素创建空间。元素相对于由视口建立的初始包含块定位,其最终位置由值top,right,bottom和left确定。此值始终创建新的堆叠上下文。

用于将位置设置为固定的CSS如下所示:

position: fixed;

元素position: fixed; 相对于视口定位,这意味着即使页面滚动,它也始终保持在同一位置。top,right,bottom和left属性用于定位元素。

sticky(黏性的)

该元素对应于文档的正常流程定位,然后根据顶部,右侧,底部和左侧的值相对于其最接近的上升块级别(包括与表格相关的元素)偏移。偏移量不会影响任何其他元素的位置。

此值始终创建新的堆叠上下文。请注意,粘性元素“粘附”到其最近的祖先,即使该祖先不是最近的实际滚动祖先,也具有“滚动机制”。

用于将位置设置为粘性的CSS是:

position: sticky;

position: sticky; 根据用户的滚动位置定位元素,并根据滚动位置在 位置relative 和fixed位置之间切换。

重叠元素

网页上的重叠元素非常有用,可以突出显示,推广和关注我们网页上的重要内容。在您的网站上制作元素叠加是非常有用且非常有价值的功能设计实践。当元素被定位时,它们可以与其他元素重叠,因此为了指定顺序(应该在其他元素的前面或后面放置哪个元素),我们应该使用z-index属性。堆栈顺序较大的元素始终位于堆栈顺序较低的元素前面。作为通知,z-index属性仅适用于定位元素(position:absolute,position:relative或position:fixed)。

以下示例显示了z-index属性如何在不同的方块上工作:

 !DOCTYPE html  html  head  style .square-set { color: white; background: purple; height: 170px; position: relative; border-radius: 15px; font: Helvetica; width: 400px;.square { background: orange; border: 4px solid goldenrod; position: absolute; border-radius: 15px; height: 80px; width: 80px;.square-1 { position: relative; z-index: 1; border: dashed; height: 8em; margin-bottom: 1em; margin-top: 2em;.square-2 { position: absolute; z-index: 2;  background: black; width: 65%; left: 60px; top: 3em;.square-3 { position: absolute; z-index: 3;  background: lightgreen; width: 20%; left: 65%; top: -25px; height: 7em; opacity: 0.9; /style  /head  body  div >

效果如下:

360截图20181105095727530.jpg

图像上定位文本

下面的示例使用上述CSS定位值在图像上覆盖一些文本:

 !DOCTYPE html  html  head  style .module{ background:  linear-gradient{ rgba(0, 4, 5, 0.6), rgba(2, 0, 3, 0.6) url(http://www.holtz.org/Library/Images/Slideshows/Gallery/Landscapes/43098-DSC_64xx_landscape-keltern-1_wall.jpg); background-size: cover; width: 600px; height: 400px; margin: 10px 0 0 10px; position: relative; float: left;.mid h3 { font-family: Helvetica; font-weight: 900; color: white; text-transform: uppercase; margin: 0; position: absolute; top: 30%; left: 50%; font-size: 3rem; transform: translate(-50%, -50%); /style  /head  body  div >

效果如下:

360截图20181105095855441.jpg

最后

在本文中,我们已经描述并给出了CSS定位类型的示例,并描述了如何重叠元素并在图像上添加一些文本。

以上就是如何使用css定位html元素?(附示例)的详细内容,其它编程语言

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表