Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

apply margin to all child elements

/* This will select all child elements of parent-div and 
	apply 10px margin on top*/
#parent-div > * {
    margin-top: 10px;
}
 
PREVIOUS NEXT
Tagged: #apply #margin #child #elements
ADD COMMENT
Topic
Name
5+1 =