JSFiddle - React, Tailwind, and code Playground

by muavenet

HTML

<div class="container">
  <div class="box">Sol tarafı çevreleyen div.</div>
  <div class="box">Sağ tarafı çevreleyen div.</div>
  <div style="clear:both;"></div>
</div>

CSS

div.container {
    width: 30em;
    border: 1em solid;
}

div.box {
    box-sizing: border-box;
    width: 50%;
    border: 1em solid red;
    float: left;
}