慕标6314545
2018-09-10 21:15
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>div test2</title>
<style type="text/css">
div{
border:1px solid red;
}
#box1{
position: fixed;
background-color: green;
}
#box2{
position: relative;
background-color: red;
margin-top: 100px;
}
</style>
</head>
<body>
<div id="box1"><img src="img/logo.png"></div>
<div id="box2"><img src="img/ban2.jpg"></div>
<div></div>
<img src="img/ban2.jpg">
</body>
</html>
如上代码,box1的fixed定位被box2的margin干扰了,
解决方法可以把margin改成padding,或者在margin上改positon为absolute,
但是就是不理解出错的原理到底是什么?求大神指导下,谢谢。
maargin重叠?
初识HTML(5)+CSS(3)-升级版
1225293 学习 · 18230 问题
相似问题