JSFiddle - React, Tailwind, and code Playground
HTML
<p id="test"></p>
CSS
p { content:'x'; }
p:before, p:after { content:inherit }
JavaScript
alert(window.getComputedStyle(document.getElementById("test")).content);
<p id="test"></p>
p { content:'x'; }
p:before, p:after { content:inherit }
alert(window.getComputedStyle(document.getElementById("test")).content);