19、相对定位的使用及练习

6、定位

6.1、相对定位

1.默认情况/index.html

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <style>
            div {
                margin:10px;
                padding:5px;
                font-size: 12px;
                line-height: 25px;
            }
            #father {
                border: 1px solid #666;
                padding: 0;

            }
            #first {
                border: 1px dashed #661b50;
                background-color: red;
            }
            #second {
                border: 1px dashed #426615;
                background-color: orange;
            }
            #third {
                border: 1px dashed #171a66;
                background-color: yellow;
            }
        </style>
    </head>
    <body>
        <div id="father">
            <div id="first">第一个盒子</div>
            <div id="second">第二个盒子</div>
            <div id="third">第三个盒子</div>
        </div>
    </body>
</html>

效果图:

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-eOaeaWlk-1632129256577)(C:\Users\Administrator\Desktop\学习笔记\前端学习\CSS\19、相对定位的使用及练习.assets\image-20210920171337658.png)]

2.相对定位/index.html

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
<!--        相对定位:相对于自己原来的位置进行偏移-->
        <style>
            body {
                padding: 20px;
            }
            div {
                margin:10px;
                padding:5px;
                font-size: 12px;
                line-height: 25px;
            }
            #father {
                border: 1px solid #666;
                padding: 0;

            }
            #first {
                border: 1px dashed #661b50;
                background-color: red;
                position: relative;/*相对定位,上下左右*/
                top:-20px;
                left:20px;
            }
            #second {
                border: 1px dashed #426615;
                background-color: orange;
            }
            #third {
                border: 1px dashed #171a66;
                background-color: yellow;
                position: relative;
                bottom: -10px;
                right: 20px;
            }
        </style>
    </head>
    <body>
        <div id="father">
            <div id="first">第一个盒子</div>
            <div id="second">第二个盒子</div>
            <div id="third">第三个盒子</div>
        </div>
    </body>
</html>

效果图:

在这里插入图片描述

相对定位:position:relative;

相对于原来的位置,进行指定的偏移,相对定位的话,它仍然在标准文档流中,原来的位置会被保留

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值