. vertical-align: middle; - , . , .
/ , " ".
, . ( , , .)
MDN:
, , . , -:: first-line , .
::before :
:: before , . . .
, , , , ::before.
: http://codepen.io/cam5/pen/kkxpbX,
<blockquote>
<span class="quotationMark quotationMark--left"></span >
They call me…<br /> Mister Tiibs
<span class="quotationMark quotationMark--right"></span >
</blockquote>
CSS:
.quotationMark {
position: relative;
}
.quotationMark--left::before,
.quotationMark--right::before {
font-size: 60px;
font-weight: 600;
position: absolute;
top: -15px;
}
.quotationMark--left::before {
content:"\201C";
left: -45px;
}
.quotationMark--right::before {
content:"\201D";
right: -45px;
}
CSS Tricks , ISO CSS content: https://css-tricks.com/snippets/html/glyphs/
, .quotationMark display: relative; , top, right, left (), position: absolute; .