关于position

Posted jason1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于position相关的知识,希望对你有一定的参考价值。

有四个属性:  

static:静止
relative:相对的
fixed:固定的(广告等信息固定在网页的某个位置,不管你上下滑动位置不变)
absolu:绝对的

.box{
display:inline-block;
width: 100px;
height: 100px;
background: blue;
color: rgb(71, 16, 16);
}


#two {
position: fixed;
top: 200px;
left: 100px;
background: red;
}


#one{
position: absolute;
top: 1000px;
left: 10px;
background: black;

}
 
#three{
position: sticky;
top: 200px;
left: 80px;
background: purple;


}

  

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="positionCSS.css">
</head>
<body>
    <div class="box" id="one">one</div>
    <div class="box" id="two">two</div>
    <div class="box" id="three">three</div>
    <div class="box" id="four">four</div>
</body>
</html>

  

 

 

以上是关于关于position的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

css常用代码片段 (更新中)

很实用的JQuery代码片段(转)

关于代码片段的时间复杂度

关于position:fixed;的居中问题

关于片段生命周期