视频中的绝对定位问题,我测试的效果不一样!!!
首先我想问的是position: absolute;不是会将对象拖离出正常的文档流绝对定位吗?既然它已经脱离了正常的文档流,它便不会占位置,那么中间的那个box2左侧就不会是紧跟着左边的box1右侧开始,而是直接紧贴着浏览器左边开始,反正我的测试就是这个现象的,我测试的结果是box1和box3已经脱离文档了,不占位置了,所以box2如果不设置margin值,便会把box1和box3下面的位置占住。为了看得清楚我把box2高度设置比别的高10px
测试效果截图:
以下我的是代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style type="text/css">
*{margin: 0;padding: 0;}
body{
font-family: "Microsoft YaHei";
line-height: 500px;
color: white;
font-size: 30px;
}
.f{
width: 300px;
height: 500px;
background: fuchsia;
text-align: center;
position: absolute;
top: 0;left: 0;
}
.g{
height: 510px;
background: seagreen;
text-align: center;
margin: 0 100px;
}
.h{
width: 400px;
height: 500px;
background: tomato;
position: absolute;
right: 0;
top: 0;
text-align: center;
}
</style>
</head>
<body>
<div>
box1
</div>
<div>
box2
</div>
<div>
box3
</div>
</body>
</html>