How to space the children of a div with css?

前端 未结 8 612
-上瘾入骨i
-上瘾入骨i 2021-02-03 17:37

I want a gap of say 30px; between all children of my div. E.g if I have:

...

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-03 18:20

    You can try it by CSS standarts:

    div > *{
       margin-top:30px;
    }
    

    More info could be found here: http://www.w3.org/TR/CSS2/selector.html#child-selectors

提交回复
热议问题