CSS-定位

定位

相对定位

<!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 red;
            position: relative; /*相对定位,上下左右*/
            top:-20px;  /*上移20px*/
            left: 20px;  /*右移20px*/
        }
        #second{
            border: 1px dashed tan;
        }
        #third{
            border: 1px dashed yellow;
        }
    </style>
</head>
<body>
<div id="father">
    <div id="first">第一个盒子</div>
    <div id="second">第二个盒子</div>
    <div id="third">第三个盒子</div>
</div>

</body>
</html>

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

相对位置的练习

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        #box{
            width: 300px;
            height: 300px;
            padding: 10px;
            border: 2px solid red;
        }
        a{
            width: 100px;
            height: 100px;
            text-decoration: none;  /*去掉下划线*/
            background: pink;
            line-height: 100px;  /*文字上下居中*/
            text-align: center;  /*文字左右居中*/
            color: white;  /*文字颜色为白色*/
            display: block;  /*转为块元素*/
        }
        a:hover{
            background: cornflowerblue;  /*鼠标在其上方会变蓝色*/
        }
        .a2,.a4{
            position: relative;
            left: 200px;
            top: -100px;
        }
        .a5{
            position: relative;
            left: 100px;
            top: -300px;
        }
    </style>
</head>
<body>
<div id="box">
    <a href="#" class="a1">链接1</a>
    <a href="#" class="a2">链接2</a>
    <a href="#" class="a3">链接3</a>
    <a href="#" class="a4">链接4</a>
    <a href="#" class="a5">链接5</a>
</div>

</body>
</html>

CSS-定位

绝对定位

定位:基于xxx定位,上下左右~
1.没有父级元素定位的前提下,相对于浏览器定位
2.假设父级元素存在定位,我们通常会相对于父级元素进行偏移(推荐)

固定定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body{
            height: 1000px;
        }
        div:nth-of-type(1){  /*选中其父级元素下第几个div*/
            width: 100px;   /*绝对定位,相对于浏览器*/
            height: 100px;
            background: red;
            position: absolute;
            right: 0;
            bottom: 0;
        }
        div:nth-of-type(2){  /*固定定位*/
            width: 50px;
            height: 50px;
            background: yellow;
            position: fixed;
            right: 0;
            bottom: 0;
        }
    </style>
</head>
<body>

<div>div1</div>
<div>div2</div>

</body>
</html>

CSS-定位
div1随着滚轮滑动上下移动,div2位置固定不变

CSS-定位

上一篇:PointNet++三维点云处理精讲(PyTorch版):论文复现+代码详解


下一篇:【译】ASP.NET Core updates in .NET 5 Preview 8