Margin on child element moves parent element

前端 未结 14 2204
广开言路
广开言路 2020-11-21 23:38

I have a div (parent) that contains another div (child). Parent is the first element in body with no

14条回答
  •  臣服心动
    2020-11-22 00:16

    This is what worked for me

    .parent {
    padding-top: 1px;
    margin-top: -1px;
    }
    
    .child {
    margin-top:260px;
    }
    

    http://jsfiddle.net/97fzwuxh/

提交回复
热议问题