+ 1
When I'm nesting a div inside another div and giving margin-top to inner div why upper division moves down too
<div class="container> <div class="child"> </div> </div> CSS .container{ height:200px Background:black} .child{ height:50px background:red margin-top:10px} While I'm applying margin to child container moves down too
3 odpowiedzi
+ 2
Here is a discussion about this issue
https://stackoverflow.com/questions/8529695/adjusting-the-margin-top-of-a-div-inside-of-a-container-div-pushes-both-the-inne
+ 1
Reset all margin and padding to zero
* {
margin: 0;
padding: 0;
}
0
Ty both for valuable answers