JSFiddle - React, Tailwind, and code Playground

HTML

<p>My name is Donald</p>
<p>I live in Ducksburg</p>

<p><b>Note:</b> For this selector to work in IE8, a DOCTYPE must be declared, and you must use the old, single-colon CSS2 syntax (:before instead of ::before).</p>

CSS

p::before {
    content: "(";
}

p::after {
    content: ")";
}