JSFiddle - React, Tailwind, and code Playground
by mowglisanu
HTML
<div id="content">Content div</div>
CSS
#content {
quotes: "<<" ">>";
position:relative;
}
#content:before { content: open-quote }
#content:after { content: close-quote }
JavaScript
alert($('#content').css('position'));
alert($('#content').css('quotes'));