theatre

timing

by Phil Button

HTML

<h2>Flexbox method</h2>

<div id="anaes">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>

CSS

#anaes {
  display: flex;
  justify-content: space-between;
}
#anaes div {
  width: 20%;
  height: 50px;
  background: #000;
}