码迷,mamicode.com
首页 > 其他好文 > 详细

position: relative

时间:2021-02-15 11:57:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ati   idt   改变   文档流   osi   col   div   lang   一个   

相对定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }
        .box1{
            width: 200px;
            height: 200px;
            background: red;
        }
        .box2{
            width: 200px;
            height: 200px;
            background: yellowgreen;
            /* {
                margin: 0;
                padding: 0;
            }
            定位:指的是将指定的元素摆放到页面的任意位置
            1. 档开启了元素的相对定位,而不设置偏移量时,元素不会发生任何变化
            开启定位: position的值非 static 时
            2. 相对定位是相对于元素在文档流中原来的位置进行定位
            3. 相对定位元素并没有脱离文档流
            4. 相对定位元素会比文档流高一个层级
            5. 相对定位不会改变元素的性质
            */
            position: relative;
            left:100px;
            top:200px;
        }
        .box3{
            width: 200px;
            height: 200px;
            background: yellow;
        }
        /*
        相对定位不会改变元素的性质:
            内联 inline 元素,即使开启 position 也不能设置宽高
        */
        .s1{
            width: 200px;
            height: 200px;
            background: yellow;
        }
    </style>
</head>
<body>
<div id="wrap">
    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3"></div>
    <span class="s1">我是一个span</span>
</div>
</body>
</html>

 

position: relative

标签:ati   idt   改变   文档流   osi   col   div   lang   一个   

原文地址:https://www.cnblogs.com/xiluhua/p/14396416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!