Answers for "space between elements css"

CSS
0

css space between elements

.content {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
  background: #A0C5E8;
  padding: 10px 0;
}
Posted by: Guest on June-12-2021
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
1

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

Browse Popular Code Answers by Language