Answers for "space between items in css"

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
0

css remove whitespace around element

body { margin:0px; }

header { border:1px black solid; }
Posted by: Guest on September-14-2020
0

space between items in css

span + span {
    margin-left: 10px;
}
Posted by: Guest on January-04-2021

Code answers related to "space between items in css"

Browse Popular Code Answers by Language