Skip to content

Home

Evenly distributed children

Evenly distributes child elements within a parent element.

<div class="evenly-distributed-children">
  <p>Item1</p>
  <p>Item2</p>
  <p>Item3</p>
</div>
.evenly-distributed-children {
  display: flex;
  justify-content: space-between;
}

More like this

Start typing a keyphrase to see matching snippets.