Aplicar margem a todos os elementos infantis
/* This will select all child elements of parent-div and
apply 10px margin on top*/
#parent-div > * {
margin-top: 10px;
}
Odd Ocelot