I want a gap of say 30px; between all children of my div. E.g if I have:
... 8条回答 小蘑菇 (楼主) 2021-02-03 18:21 You can easily do that with: #parent > * + * { margin-top: 30px; } This will be applied to all direct children except the first one, so you can think of it as a gap between elements. 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
...
You can easily do that with:
#parent > * + * { margin-top: 30px; }
This will be applied to all direct children except the first one, so you can think of it as a gap between elements.