定位

作者: JacksonMrwang | 来源:发表于2019-02-27 22:14 被阅读0次

Position

普通流 定位
Position:static 默认行为
从上到下从左到右按顺序以流的方式进行定位
子元素会排列在父容器element内
Inline-block



##相对定位(也叫已定位元素)
Position:relative
在普通流的基础上进行偏移
普通流的位置仍然保留
```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div{
           width: 200px;
            height: 200px;
            background-color: orange;
            margin: 2px;
        }
        #a{
            background-color: rebeccapurple;
            position: relative;
            left: 170px;
            top: 20px;
        }
        #b{
           position: relative;
            top: -30px;
        }
        #c{
            width: 100px;
            height: 100px;
            background: orangered;
            position: relative;
            left: 200px;
        }
        #d{
            background: paleturquoise;
            position: relative;
            right: 0px;
            top: 0px;
            width: 100px;
            height: 100px;
        }
    </style>
</head>
<body>
<div id="a">ee
<div id="c">tt</div>
<div id="d">rr</div>
</div>
<div id="b">tt</div>
</body>
</html>

##绝对定位
Position:absolut
在普通流中完全消失
Left top 以左上角为原点进行调整
Right bottom 以右下角为原点调整
当是绝对的时候会从正常流失
Right=0px top=0px 右上角定位
Left=0px bottom=opx 左下角定位
```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        #a{
            position: relative;
            width: 300px;
            height: 300px;
            background-color: orange;
            left: 20px;
            top: 20px;
        }
        #b{
            z-index: 2;
            position: absolute;
            /*top: 10px;*/
            /*left: 10px;*/
            bottom: 0px;
            left: 0px;
            width: 100px;
            height: 100px;
            background-color: orangered;
        }
        #c{
            /*调整图层高度*/
            z-index: 4;
            position: absolute;
            right: 0px;
            top: 0px;
            width: 50px;
            height: 50px;
            background-color: paleturquoise;
        }
        #t{
            top: 50px;
            right: 0px;
            position: fixed;
           background-color: red;
            width: 100px;
            height: 100px;
        }
    </style>
</head>
<body>
<div id="a">
    <div id="b"></div>
    <div id="c"></div>
</div>
<div id="t">sd</div>
    </body>
</html>

固定式布局
Position:fixed;
一窗口为标准

浮动(改进的普通流)
Float:left/right
普通流会认为浮动不存在


相关文章

  • 定位,定位,还是定位

    要想成为一个好的文字的输出者,首先要给自己一个合理的定位。定位可以首先想象自己想成为的角色:一个能够通过各种故事启...

  • 10-CSS定位流

    定位流 定位流分类相对定位绝对定位固定定位静态定位 相对定位 什么是相对定位?相对定位就是相对于自己以前在标准流中...

  • CSS中的几种定位

    CSS中常用的定位有 普通定位,相对定位 绝对定位、fixed定位 浮动 1、普通定位和相对定位 css中的元素有...

  • 2017-02-23 CSS 学习笔记

    定位流 定位流分类 相对定位 绝对定位 固定定位 静态定位 什么是相对定位相对定位就是相对于自己以前在标准中的位置...

  • #30天专注橙长计划#品牌定位30(6)营销推广1

    品牌定位的维度包括: 市场定位、价格定位、形象定位、地理定位、人群定位、渠道定位等; 经过前期大量的市场调研工作,...

  • D28:系统地图, 高德地图

    目录一. 定位功能 iPhone手机定位(基站定位, WiFi定位, GPS定位: 定位所需时间递增, 精确度递增...

  • 相对定位、绝对定位和固定定位

    1. 相对定位 定位有三种:相对定位,绝对定位、固定定位。 相对定位: position:relative lef...

  • 定位流

    定位流指的是:相对定位(relative)/绝对定位(absolute)/固定定位(fixed) 不包括静态定位(...

  • CSS补充2

    定位position 定位分为四种:相对定位 relative,绝对定位 absolute,固定定位 fixed,...

  • 定位

    1、static定位(普通流定位) -------------- 默认定位 2、float定位(浮动定位) 例:f...

网友评论

      本文标题:定位

      本文链接:https://www.haomeiwen.com/subject/chiquqtx.html