我正在设计一个网站,每页都有报价。我将 CSS 应用到这句话中,以使其看起来最好并脱颖而出。但是我有几个问题。
.quote {
font-size: 18pt;
padding-top: 50px;
padding-bottom: 15px;
text-align: center;
line-height: 0.25;
}
.speech_mark_large {
color: #203D69;
font-size: 120px;
vertical-align: top;
}
<div class="quote">
<span class="speech_mark_large">“</span> Leading the way with innovative design of corrugated Point of Sale displays and packaging offering bespoke design to fulfill your brief.
<span class="speech_mark_large">”</span>
</div>
也在JSFiddle上。
我希望引号的两行靠得更近,但是当我应用行高来解决这个问题时,它会将语音标记推到上一行。我该如何解决这个问题?