zoukankan      html  css  js  c++  java
  • CSS-position

      position是规定元素的定位类型属性,它的值有absolute、relative、fixed、static(static)、inherit。需要注意的是,绝对定位absolute和固定定位fixed元素会隐式地转换为块级元素,而不论该元素本身是什么类型。    

      position各属性值的含义如下:

    描述

    absolute

    生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。

    relative

    生成相对定位的元素,相对于其正常位置进行定位。

    fixed

    生成固定定位的元素,相对于浏览器窗口进行定位。

    static

    默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。

    inherit

    从父元素继承 position 属性的值。

      接下来通过"position-demo.html"看一下各属性值的不同效果。

      position-demo.html代码如下:

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="UTF-8">
            <title>position demo</title>
            <style>
                html, body {
                    width: 100%;
                    height: 100%;
                    margin: 0;
                    padding: 0;
                    color: #fff;
                    font-size: 30px;
                }
                .parent {
                     /* 关键代码-start */
                    position: relative;
                    /* 关键代码-end */
                    width: 400px;
                    height: 400px;
                    margin: 100px;
                    background-color: #66C9B8;
                }
                .child {
                    /* 关键代码-start */
                    position: absolute;
                    left: 100px;
                    top: 100px;
                    /* 关键代码-end */
                    width: 200px;
                    height: 200px;
                    background-color: #055F50;
                }
            </style>
        </head>
        <body>
            <div class="parent">
                <span class="child">child</span>
            </div>
        </body>
        <script></script>
    </html>
    absolute

      child是absolute绝对定位的元素,相对于有relative相对定位的父元素parent定位。

      效果:

    relative

      child是relative相对定位的元素,相对于原本正常的位置进行定位。

      效果:

    fixed

      child是fixed固定定位的元素,相对于浏览器窗口进行定位。

      效果:

    static

      child是static没有定位的元素,出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。

      效果:

    inherit

      child从parent继承 position 属性的值“relative”。

      效果:

    微信扫描二维码关注更多精彩

  • 相关阅读:
    count(1)、count(*)与count(列名)的执行区别
    解析Json字符串中的指定的值
    消息队列的好处与弊端
    17 ~ express ~ 分类的显示 ,修改 和 删除
    Express ~ 获取表单 get 和 post 提交方式传送参数的对比
    16 ~ express ~ 添加博客分类
    JS ~ Promise 对象
    JS ~ Promise.reject()
    JS ~ 返回上一步
    PHP ~ 通过程序删除图片,同时删除数据库中的图片数据 和 图片文件
  • 原文地址:https://www.cnblogs.com/superlizhao/p/8889246.html
Copyright © 2011-2022 走看看