We are currently implementing custom styles for beginning and end quotes in a string using the <blockquote>
tag. However, we are having issues with the alignment, as the opening quote appears before the text and the closing quote is at the end of the text.
How can we adjust the alignment to fix this issue?
blockquote {
font-style: italic;
border: none;
quotes: "\201C" "\201D" "\2018" "\2019";
display: block;
}
blockquote:before {
content: open-quote;
font-weight: bold;
color: red;
}
blockquote:after {
content: close-quote;
font-weight: bold;
color: red;
}
<blockquote>
<p>Competently conceptualize clicks-and-mortar customer service without front-end opportunities. Interactively morph visionary intellectual capital without mission-critical manufactured products. Dramatically grow extensible portals vis-a-vis.</p>
</blockquote>
The current layout results can be viewed here: https://i.stack.imgur.com/mEZ3G.png
The expected layout results are shown in this image: https://i.stack.imgur.com/6Iu3t.png