gpt4 book ai didi

html - 如何增加字体的上边距?

转载 作者:行者123 更新时间:2023-11-28 02:48:11 27 4
gpt4 key购买 nike

我正在尝试删除添加到字体顶部/底部的边距。

<div id="wrapper">
<span id="text">Text</span>
</div>

#wrapper{
width: 200px;
height: 200px;
Border: 1px solid black;
margin: 0px;
padding: 0px;
}
#text{
background: red;
font-size: 40px;
line-height: 30px;
padding: 0px;
margin-top: 0px;
margin-left: 5px;
}

enter image description here

fiddle
https://jsfiddle.net/fsmje7Ly/1/

如何将红色背景增加到字体高度?
我怎样才能从字体中删除顶部/底部边距?

我试过使用 line-height: 30px;

最佳答案

尝试下面的代码你会得到想要的输出。

#wrapper{
width: 200px;
height: 200px;
Border: 1px solid black;
margin: 0px;
padding: 0px;
}
#text{
background: red;
font-size: 40px;
line-height: 30px;
padding: 0px;
margin-top: 0px;
margin-left: 0;
display:inline-block;
}

关于html - 如何增加字体的上边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46807409/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com