I am seeking a way to format paragraphs with large quotation marks surrounding them. I have attempted several methods, but my line-height seems to be affected, as shown in the following image:
Can anyone suggest a proper method for achieving this?
(Additionally, is there a stylish closing variation for this quote? >> 69)
<p><span>‟</span><a href="#">Foobar</a><br />Foobar<br />Foobar<span>‟</span></p>
<p><span>‟</span><a href="#">Foobar</a><span>‟</span></p>
<p><span>‟</span><a href="#">Foobar</a><span>‟</span></p>
body {
font-family: sans-serif;
}
a {
text-decoration: none;
color: rgba(50, 50, 50, 1);
}
span {
font-size: 100px;
position: relative;
top: 50px;
}
p {
line-height: 10px;
}