简体   繁体   中英

How to remove vertical spacing in <span> element?

How can I remove the vertical blank space from the top and bottom of this element? The text and text size are dynamic so I can't hard code a value in the css.

Thanks

在此处输入图片说明

You need to set the line-height smaller than the font-size. So if you have football declared in size 50px font, set the line-height to 40px. It will account for the spacing above and below the font chars.

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

http://jsfiddle.net/nj6tzrnL/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM