边缘仍然出现在顶部(大约7个像素),即使它在css中设置为0顶部和0左侧。还有其他我想念的东西吗?提前谢谢,凯莉
答案 0 :(得分:4)
默认情况下,图像是内联的,因此浏览器会将它们放入文本流中,其中包括行间距。
答案 1 :(得分:1)
浏览器也期待文本。 line-height
已设置,因此仍有空间。
设置line-height: 0;
。
#triquiback{
left: 0;
top: 0;
position: relative;
overflow:hidden;
zIndex: -9999;
line-height: 0; /* NEW ! */
}