JSFiddle - React, Tailwind, and code Playground
by nottrobin
HTML
<div class="community">
<p class="teaser">hello</p>
</div>
CSS
.community .teaser {
position: relative;
font-style: italic;
padding-left: 30px;
z-index: 2;
}
.community .teaser:before {
content: "\201C ";
font-family: 'PT Serif', serif;
font-size: 8em;
position: absolute;
top: -30px;
left: -10px;
color: #eee;
z-index: -1;
}