why is margin-top working for a div that is inside another div? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

why is margin-top working for a div that is inside another div?

I have one div box which is placed inside a bigger div box, margin-top is not able to be apply to the inner box why?

17th Jun 2021, 8:19 PM
Francis Woli
Francis Woli - avatar
3 Answers
+ 4
Francis Woli do you mean, margin-top isn't working on the first child element? If yes, then I think I know the solution. Just write "overflow: auto;" in the css of the parent element, that's all. Here is the source from where I learned it. https://stackoverflow.com/questions/9519841/why-does-this-css-margin-top-style-not-work
18th Jun 2021, 2:58 PM
Genuine Stalwart
Genuine Stalwart - avatar
+ 2
margins are sometimes tricky to understand ^^ as far as I understand them until now, they apply globaly (meaning by spacing with content that are not necessarly inside the same parent), and they are kind of merged (bigger apply) with previous/next content opposite margin...
17th Jun 2021, 8:25 PM
visph
visph - avatar
+ 2
also setting a border to a parent (could?) act as a content... and so applying border:1px solid transparent to parent could solve your problem ^^ other way is to define padding to parent ;)
17th Jun 2021, 8:27 PM
visph
visph - avatar