Answers for "space between all child elements"

CSS
0

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; 
}
Posted by: Guest on August-27-2020

Code answers related to "space between all child elements"

Browse Popular Code Answers by Language