这应该很简单,但我不明白。我试图让三行(一种小字体,一种大字体,一种小字体)以单间距相互堆叠。相反,大字体行上方总是有一个双空格(对于 48-pt,它上方有一个 48-pt 行)。
我玩过边距、填充、高度、边框;除了最基本的必需品外,我已经剥离了所有东西,但我仍然无法让顶部和中间线很好地相互贴靠。
代码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<div style="
font-size:16px;
height:16px;
padding:0px;
border:0px;
margin:0px">
<p>Line 1<p></div>
<div style="
font-size:48px;
height:48px;
padding:0px;
border:0px;
margin:0px">
<p>Line 2</p></div>
<div style="
font-size:16px;
height:16px;
padding:0px;
border:0px;
margin:0px">
<p>Line 3</p></font>
</html>