flex-justify-content

by loebmraz

HTML

<div class="parent">
  <div id="child1">

  </div>
  <div id="child2">

  </div>
  <div id="child3">

  </div>
</div>

CSS

.parent {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 300px;
  border: solid 2px green;
}

#child1 {
  background: black;
  width: 50px;
  height: 50px;
}

#child2 {
  background: yellow;
  width: 100px;
  height: 50px;
}

#child3 {
  background: red;
  width: 30px;
  height: 50px;
}