..._positionabsojute">
当前位置:   article > 正文

position(absolute)绝对定位_positionabsojute

positionabsojute

position(absolute)绝对定位 脱离文档流
参照点为:距离当前元素最近的父定位元素,若所有父元素都没有定位元素,就参照游览器视口

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>absolute</title>
	<style>
		body{ 

		 }
		 .outer {
		 	background: #ccc;
		 	width: 800px;
		 	margin: 100px auto;
		 	position: relative;
		 }
		.outer > div:nth-child(1),
		.outer > div:nth-child(3) {
			height: 100px;
		}
		.outer > div.one {
			background-color: lightblue;
		}
		.outer > div.two {
			background-color: pink;
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			opacity: .5;
		}
		.outer > div.three {
			background-color: teal;
		}
	</style>
	</style>
</head>
<body>
	<div class="outer">
		<div class="one">第一个孩子</div>
		<div class="two"></div>
		<div class="three">第三个孩子</div>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/535280
推荐阅读
相关标签
  

闽ICP备14008679号