JSFiddle - React, Tailwind, and code Playground

by webvitaly

HTML

<div class="well calculated-width">
    this block has <strong>width = 100% - 100px</strong>
</div>

CSS

.calculated-width {
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
}
.well {
    background: #ffa;
}