JSFiddle - React, Tailwind, and code Playground

by ibcLee

HTML

<div class="parent">
  <div class="left">left</div>
  <div class="center">center</div>
  <div class="right">right</div>
</div>

SCSS

@mixin common{
  line-height: 100px;
  height: 100px;
  text-align: center;
  color: white;
}
.parent{
  @include common;
  display: table;
  table-layout: fixed;
  width: 100%;
  .left,.center{
    display: table-cell;
    width: 100px;
  }
  .left{
    background-color: red;
  }
  .center{
    background-color: green;
  }
  .right{
    display: table-cell;
    background-color: blue;
    overflow: hidden;
  }
}