Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css space between child elements

/*
	this method will add bottom space but will not apply bottom space in last child
*/

div > *:not(:last-child) {
    display: block;
    margin-bottom: 30px; 
} 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #css #space #child #elements
ADD COMMENT
Topic
Name
3+1 =