Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何定义一个跨度,使其内容到达跨度的边界而没有填充?我尝试将包含div和span自身的填充设置为'0',但这没有奏效。
div
span
'0'
您可以在示例中看到数字周围都有空格 - 特别是在顶部和底部。这就是我要消除的 - 以便跨度的边界实际上触及数字。
数字上方的空白不是由填充引起的,而是由字体行高引起的。
您可以使用小于 1 的 lineheight,它应该会给您想要的结果。
span { font-size: 64pt; padding: 0; line-height: .7; }
不是很完美,但它会从字体变为字体。
小提琴