JSFiddle - React, Tailwind, and code Playground

by Taras Vasylivskyy

HTML

<div class="block">1</div>
<div class="block">2</div>

CSS

.block {
  display: inline-block;
  height: 200px;
  background: red;
  margin: 10px
}
.block:first-child {
  float: left;
  width: 30%;
}

.block:last-child {
  float: right;
  width: 40%;
}