html – 给子div一个相对于父div的边距[复制]

前端之家收集整理的这篇文章主要介绍了html – 给子div一个相对于父div的边距[复制]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > 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;
}

这是你的小提琴:http://jsfiddle.net/algorhythm/1whywvpa/5/

原文链接:https://www.f2er.com/html/426086.html

猜你在找的HTML相关文章