JSFiddle - React, Tailwind, and code Playground

HTML

sdfsdfsdf
<br>
    <blockquote>abc</blockquote>
    <br>
        sdfsdfsdf

CSS

blockquote {
    width:350px;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-style:italic;
    font-size:24px;
    color:#494949;
    position:relative
}
blockquote:before,blockquote:after {
    font-size:50px;
    opacity:.3;
    position:absolute
}
blockquote:before {
    content:"\201C";
    left: -25px;
    top: -5px;
}
blockquote:after {
    content:"\201D";
    top: -5px;
}