JSFiddle - React, Tailwind, and code Playground

by Kelly Hawker

HTML

<div id="main">
  <div style="background-color:coral;">A</div>
  <div style="background-color:lightblue;">B</div>
  <div style="background-color:khaki;">C</div>
  <div style="background-color:pink;">D</div>
  <div style="background-color:lightgrey;">E</div>
  <div style="background-color:lightgreen;">F</div>
</div>

CSS

#main {
  width: 100%;
  height: 400px;
  border: 1px solid #c3c3c3;
  display: flex;
  flex-direction: row-reverse;
  /*align-items: flex-start;*/
  justify-content: flex-end;
}

#main div {
  width: 50px;
  height: 50px;
}