offsetParent详解
2019-05-13 本文已影响0人
椋椋夜色
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> offsetParent详解 </title>
<style>
.box {
width: 300px;
height: 300px;
background-color: rgb(241, 4, 4);
position: relative;
}
.box1 {
width: 200px;
height: 200px;
background-color: #fff;
/* position: absolute; */
}
.box2 {
width: 100px;
height: 100px;
background-color: rgb(7, 1, 1);
position: absolute;
}
</style>
</head>
<body>
<!-- offsetParent定位父级
元素自身有fixed定位,offsetParent的结果为null
当元素自身有fixed固定定位时,我们知道固定定位的元素相对于视口进行定位,此时没有定位父级,offsetParent的结果为null
元素自身无fixed定位,且父级元素都未经过定位,offsetParent的结果为
元素自身无fixed定位,且父级元素存在经过定位的元素,offsetParent的结果为离自身元素最近的经过定位的父级元素
元素的parentNode是null -->
<div class="box">
<div class="box1">
<div class="box2"></div>
</div>
</div>
<body>
<body>
<script>
var box1 = document.getElementsByClassName('box1')[0];
console.log(box1.offsetParent);
var box2 = document.querySelector('.box2');
console.log(box2.offsetParent);
</script>
</body>
</html>