如何删除<span>元素中的垂直间距?</span>

时间:2014-10-19 21:00:10

标签: javascript html css

如何从此元素的顶部和底部删除垂直空白区域?文本和文本大小是动态的,因此我无法对css中的值进行硬编码。

由于

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要将行高设置为小于font-size。因此,如果您使用50px字体声明足球,请将line-height设置为40px。它将考虑字体字符上方和下方的间距。

p {
font-size: 50px;
background-color: red;
line-height: 40px;}

http://jsfiddle.net/nj6tzrnL/