position

Posted 2376020104ypj

tags:

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

html内容)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>position</title>
<link rel="stylesheet" type="text/css" href="0923.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>

( css内容)

body{
background: purple;
}
.box {
display: inline-block;
width: 100px;
height: 100px;
background: red;
color: black;
}

#one{
position: static;
top: 300px;
left: 300px;
}

#two {
position: absolute;
top: 120px;
left: 110px;
background: blue;
}

#three{
position: fixed;
top: 400px;
right: 150px;
background: yellow;
}

#four{
position: sticky;
top: 500px;
right: 150px;
background: lightblue;
}

 

(各个标签效果图片如下)技术分享图片










































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

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

python学习——day15(CSSJavaScriptDOM)

文档流和定位的查漏补缺

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