JSFiddle - React, Tailwind, and code Playground

HTML

<div style="display:flex;border:1px dotted black;margin-bottom:20px;">
  <div>
    This is a div
  </div>
  <div style="border-left:1px solid black;margin:0 7.5px;"></div>
  <div>
    This is another div
  </div>
</div>

<div style="display:flex;border:1px dotted black;height:100px;">
  <div>
    It also fills the parent automatically
  </div>
  <div style="border-left:1px solid black;margin:0 7.5px;"></div>
  <div>
    which is awesome!
  </div>
</div>