I tried '>\0147'
but it doesn't seem to work, is it the right syntax ?
.blockquote p::before {
content: '>\0147';
font-family: serif;
font-size: 3em;
line-height: 0;
display: block;
margin: 0 0 20px 0;
}
I tried '>\0147'
but it doesn't seem to work, is it the right syntax ?
.blockquote p::before {
content: '>\0147';
font-family: serif;
font-size: 3em;
line-height: 0;
display: block;
margin: 0 0 20px 0;
}
Try this:
CSS:
.blockquote p::before {
content: open-quote;
font-family: serif;
font-size: 3em;
line-height: 0;
display: inline;
margin: 0 0 20px 0;
}
HTML
<div class="blockquote">
<p>Lorem ipsum...</p>
</div>