JSFiddle - React, Tailwind, and code Playground
by David Thomas
HTML
<div id="box">This is the box.</div>
CSS
#box {
width: -moz-calc(100% - 20%);
width: -webkit-calc(100% - 20%);
width: -o-calc(100% - 20%);
width: -khtml-calc(100% - 20%);
width: calc(100% - 20%);
background-color: #f90;
font-weight: bold;
color: #fff;
line-height: 2em;
text-align: center;
margin: auto;
}