space between elements css code example
Example 1: 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;
}
Example 2: css remove whitespace around element
body { margin:0px; }
header { border:1px black solid; }
Example 3: space between items in css
span + span {
margin-left: 10px;
}