CSS之position(定位)属性

定义:

  • position属性规定元素的定位类型。

说明:

这个属性定义建立元素布局所用的定位机制。任何元素都可以定位,不过绝对定位或固定元素会生成一个块级框,而不论该元素本身是什么类型。相对定位元素会相对于它在正常流中的默认位置偏移。

默认值:static

继承性:no

形式语法:static | relative | absolute | sticky | fixed

JavaScript语法:object.style.position = “absolute”

浏览器支持:

浏览器支持
所有主流浏览器都支持position属性。
注释:任何版本的Internet Explorer(包括IE8)都不支持属性值“inhert”。

可能的值

在这里插入图片描述

举例说明

一、position :static
  • 该关键字指定元素使用正常的布局行为,即元素在文档常规流中当前的布局位置。此时 top、right、bottom、left 属性无效。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS-position-static</title>
    <style>
        .container{
            background-color: #868686;
            width: 100%;
            height: 300px;
        }
        .content{
            background-color: yellow;
            width: 100px;
            height: 100px;
            position: static;
            left: 10px;/* 这个left没有起作用 */
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="content">    
        </div>
    </div>
</body>
</html>

在这里插入图片描述

  • 对 content 的 position 设定 static 后,left就失效了,而元素(content)就以正常的 normal flow 形式呈现。
二、position: relative
  • 该关键字下,元素先放置在未添加定位时的位置,再在不改变页面布局的前提下调整元素位置(因此会在此元素未添加定位时所在位置留下空白)。
  • position:relative 对 table-*-group, table-row, table-column, table-cell, table-caption 元素无效。
  • 说的通俗一点,就是相对于normal flow中的原位置来定位

在没有设置left、top等属性时,正常出现在normal flow中的位置

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>CSS-position-relative</title>  
    <link rel="stylesheet" href="https://cdn.bootcss.com/normalize/8.0.0/normalize.css">
    <style>
            .container{
                background-color: #868686;
                width: 100%;
                height: 300px;
            }
            .content_0{
                background-color: yellow;
                width: 100px;
                height: 100px;               
            }
            .content_1{
                background-color: red;
                width: 100px;
                height: 100px;
                position: relative;/* 这里使用了relative  */            
            }
            .content_2{
                background-color: black;
                width: 100px;
                height: 100px;               
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="content_0">    
            </div>
            <div class="content_1">    
            </div>
            <div class="content_2">    
            </div>
        </div>   
</body>
</html>

在这里插入图片描述
在添加了left、和top属性之后

.content_1{
                background-color: red;
                width: 100px;
                height: 100px;
                position: relative;/* 这里使用了relative  */
                left: 20px;/* 这里设置了left和top */
                top: 20px;            
            }

在这里插入图片描述

  • 这里我们就可以看到,元素(content_1)的位置相对于其原位置(normal flow中的正常位置)进行了移动。
三、position: absolute
  • 不为元素预留空间,通过指定元素相对于最近的非 static定位祖先元素的偏移,来确定元素位置。绝对定位的元素可以设置外边距(margin),且不会与其他边距合并。
  • 生成绝对定位的元素,其相对于 static 定位以外的第一个父元素进行定位,会脱离normal flow。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>CSS-position-static</title>
    <link rel="stylesheet" href="https://cdn.bootcss.com/normalize/8.0.0/normalize.css">
    <style>
        .container{
            background-color: #868686;
            width: 100%;
            height: 300px;
            margin-top: 50px;
        }
        .content{
            background-color: red;
            width: 100px;
            height: 100px;
            position: absolute;
            top: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="content">    
        </div>
    </div>
</body>
</html>

在这里插入图片描述

  • 因为 content 的父元素 container 没有设置 position,默认为 static,所以找到的第一个父元素是 body(),可以看成是元素(content)相对于 body 向下移动10px。
四、position: fixed
  • 不为元素预留空间,而是通过指定元素相对于屏幕视口(viewport)的位置来指定元素位置。
  • 元素的位置在屏幕滚动时不会改变。
  • 打印时,元素会出现在的每页的固定位置。
  • fixed属性会创建新的层叠上下文。
  • 当元素祖先的 transform 属性非 none 时,容器由视口改为该祖先。
  • 通俗地说,fixed相对于window固定,滚动浏览器窗口并不会使其移动,会脱离normal flow。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>CSS-position-static</title>
    <link rel="stylesheet" href="https://cdn.bootcss.com/normalize/8.0.0/normalize.css">
    <style>
        .container{
            background-color: #868686;
            width: 100%;
            height: 1000px;
        }
        .content{
            background-color: yellow;
            width: 100px;
            height: 100px;
            position: fixed;/* 这里使用了fixed */
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="content">    
        </div>
    </div>
</body>
</html>

在这里插入图片描述

  • 无论怎么滚动鼠标,黄色的div一直在那里不动
五、 sticky
  • 粘性定位。

  • CSS3新属性。它的表现类似position:relative和position:fixed的合体,在目标区域在屏幕中可见时,它的行为就像position:relative;

  • 而当页面滚动超出目标区域时,它的表现就像position:fixed,它会固定在目标位置。

  • 目前position: sticky;的浏览器兼容性还比较差。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值