参见英文答案 > Why does this CSS margin-top style not work? 11个
这是我的HTML:
这是我的CSS:
.parentDiv {
margin-top: 200px;
width: 700px;
height: 800px;
background-color: red;
}
.childDiv {
background-color: green;
width: 50px;
height: 50px;
margin-top: 22px;
}
小提琴:http://jsfiddle.net/1whywvpa/
为什么childDiv没有获得22px的保证金?如果像素大于已经给予parentDiv的200px,则它仅获得上边距.有什么方法可以让childDiv获得相对于parentDiv的父div为22px而不做某种类型的’给父div一个1px填充’hack?
最佳答案
也许这可以帮助:CSS Margins Overlap Problem
向两个元素添加position属性.父母是亲戚,孩子是绝对的……
.parentDiv {
position: relative;
margin-top: 200px;
width: 700px;
height: 800px;
background-color: red;
}
.childDiv {
position: absolute;
background-color: green;
width: 50px;
height: 50px;
margin-top: 22px;
}
原文链接:https://www.f2er.com/html/426086.html