appliquer la marge à tous les éléments enfants
/* This will select all child elements of parent-div and
apply 10px margin on top*/
#parent-div > * {
margin-top: 10px;
}
Odd Ocelot