JSFiddle - React, Tailwind, and code Playground

by cssGuy

HTML

<div id="initial"></div>
<div id="inherit"></div>
<div id="unset"></div>

CSS

/* ALL CSS PROPERTIES ACCEPT THE CSS-WIDE KEYWORD VALUES */

/* INHERIT | INITIAL | UNSET */

#initial {
    background-color: red;
    height: 50px;
    
    width: initial;
}
#inherit {
    background-color: green;
    height: 50px;
    
    width: initial;
}
#unset {
    background-color: blue;
    height: 50px;
    
    width: unset; /* CURRENTLY ONLY LATEST FF SUPPORTS THIS */
}