Hi,
You can try this CSS:
blockquote {
background-color: rgba(242,244,255,1);
border-radius: 10px;
border: none;
}
blockquote::before {
content: "“";
position: absolute;
color: rgba(228,236,247,1);
font-size: 139px;
z-index: 1;
font-family: 'Arial';
line-height: 1;
}
blockquote p {
position: relative;
z-index: 2;
}
You can adjust the background-color: rgba(242,244,255,1);
and smart quotation mark’s color: rgba(228,236,247,1);
to your preference.
You can also change the quotation mark’s size and typeface through the font-size & font-family property.
A wise man once said:
"Have you cleared your cache?"