zoukankan      html  css  js  c++  java
  • Css之Relative

    CSS 中position:absolute的定位到底是相当于body,还是父级元素的问题

    position:absolute的定位是一个相对麻烦的问题。

    首先在文档流中,定义为position:absolute的元素已经被删除了。

    那它的定位到底是相对于body,还是父级元素呢?

    结论如下:

    position:absolute是相对于他的包含块中第一个有position:absolute或者position:relative属性的父级元素,如果都没有,就是相对于body。

    举例如下:

    1、它的父级元素都没有,就是相对于body定位的。

    <!DOCTYPE html>
    
    <html>
    <head>
        <title>test</title>
    </head>
    
    <body>
        <div style="200px;height:200px;background-color:red;">
            <div style="100px;height:100px;background-color:blue;">
                <div style="50px;height:50px;background-color:yellow;position:absolute;left:20px;top:10px;"></div>
            </div>
        </div>
    </body>
    </html>

    2、它的父级元素里有,就是相对于哪个有的父级元素。

    例一:相对于第一个div定位

    <!DOCTYPE html>
    
    <html>
    <head>
        <title>test</title>
    </head>
    
    <body>
        <div style="200px;height:200px;background-color:red;position:absolute;">
            <div style="100px;height:100px;background-color:blue;">
                <div style="50px;height:50px;background-color:yellow;position:absolute;left:20px;top:10px;"></div>
            </div>
        </div>
    </body>
    </html>

    例二:相对于第二个div定位

    <!DOCTYPE html>
    
    <html>
    <head>
        <title>test</title>
    </head>
    
    <body>
        <div style="200px;height:200px;background-color:red;position:absolute;">
            <div style="100px;height:100px;background-color:blue;position:relative;">
                <div style="50px;height:50px;background-color:yellow;position:absolute;left:20px;top:10px;"></div>
            </div>
        </div>
    </body>
    </html>
  • 相关阅读:
    java 网络编程
    JAVA 中for-each循环使用方法
    JAVA 常用集合接口List、Set、Map总结
    android学习计划
    ExtJs
    jQuery easyui
    MVC
    简易servlet计算器
    使用servlet实现用户注册功能
    用JavaBean实现数据库的连接和关闭,在jsp页面输出数据库中student表中学生的信息
  • 原文地址:https://www.cnblogs.com/zyxiaohuihui/p/9119168.html
Copyright © 2011-2022 走看看