position

Posted wxc2

tags:

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

<!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">
<link rel="stylesheet" href="./dsmd.css">
<title>Document</title>
</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>
 
 
dsmd.css
.box {
display: inline-block;
width: 100px;
height: 100px;
background: red;
color: white;
}
 
#two {
position: absolute;//探究position中static、absolute、relative、fixed、sticky的区别
top: 20px;
left: 20px;
background: blue;
}
 

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

仅将 java 类实例转换为原始类型

python学习——day15(CSSJavaScriptDOM)

文档流和定位的查漏补缺

使用 `std::equal_range` 和 `boost::transform_iterator`