JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<div id="nonItem" style="display:flex">
<div id="itemWithInitialValue"></div>
<div id="itemWithInheritedValue" style="min-width:inherit"></div>
</div>
JavaScript
console.log("gCS for initial value, on NON flex item: " +
getComputedStyle(nonItem, "").minWidth);
console.log("gCS for initial value, on flex item: " +
getComputedStyle(itemWithInitialValue, "").minWidth);
console.log("gCS for inherited initial value, on flex item: " +
getComputedStyle(itemWithInheritedValue, "").minWidth);