问题描述
||
例如,在此示例中,如何摆脱文本行之间(图像上方)的间距?
解决方法
在
.box_desc
上设置line-height
。我还调整了您的top
值以补偿:
.box_desc {
position: absolute;
top: 14px;
line-height: 10px;
}
您应该调整line-height
/top
的值以达到完美。
请参阅:http://jsfiddle.net/XhZMv/
,尝试font-size:0; line-height:0;
还要固定宽度和高度。