如何删除跨度顶部/底部的空白区域?

时间:2014-10-18 13:20:00

标签: html css

这是jsfiddle。我想删除文本中顶部和底部的空白区域。我试图使用行高,但它不是我需要的。我怎么能这样做?感谢。

span {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Roboto';
}

enter image description here

1 个答案:

答案 0 :(得分:3)

这不太理想,但您可以使用heightline-height来实现这一目标:



@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
span {
    font-size: 50px;
    font-weight: 600;
    font-family: 'Roboto';

    display: inline-block;
    vertical-align: top;
    height: .75em;
    line-height: .75em;

    background-color: gold;
}

<span>Some Text</span>
&#13;
&#13;
&#13;