JSFiddle - React, Tailwind, and code Playground

by Mihai_T

HTML

<div style="height: 80px">
   ...
</div>
<div class="container-fluid">
  <div class="row">
    <div class="col-xs-2 col1">...</div>
    <div class="col-xs-10 col2">...</div>
  </div>
</div>

CSS

.col1,.col2 { 
  display: table-cell;
  width:300px;
  veritcal-align:top;
}
.col1 { 
  background:red
}
 .col2 { 
  background:blue;
  height:200px;
}
.row {
  display:table;
}