JSFiddle - React, Tailwind, and code Playground

by Moien Tajik

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css">
<div class="container-fluid">
  <div class="row">
    <div class="col-md-1" id="col1">DIV 1</div>
    <div class="col-md-10" id="col2">DIV 2</div>
    <div class="col-md-1" id="col3">DIV 3</div>
  </div>
</div>

CSS

* {
  color: white;
}

#col1 {
  background-color: red;
  text-align: center;
  min-height: 30px;
}

#col2 {
  background-color: orange;
  text-align: center;
  min-height: 30px;
}

#col3 {
  background-color: darkblue;
  text-align: center;
  min-height: 30px;
}