当 firefox (3.0.6) 以特定宽度(例如,50%)渲染 png 图像时,会在内容框的左边缘和上边缘显示一条细灰线。该线在其他宽度处消失(例如,70%)。此外,该线似乎不存在于原始图像中(使用 gimp 检查图像)。
这种现象发生在没有 CSS 样式标记的情况下——在下面的 HTML 示例中,CSS 的存在是为了阐明灰线的位置——灰线似乎很明显出现在内容框的最边缘本身。
我很难想象这是一个真正的 Firefox 错误,我想知道我忽略或没有掌握什么概念......
感谢您的时间和任何建议/想法...
图片可以在这里看到 http://datlisp.blogspot.com/2009/02/img-width-tag-and-firefox-rendering-of.html
html:
<html>
<head><title>problems with pngs</title></head>
<body>
<div style="border-color: red; border-width: thin; border-style: solid;
padding: 2px">
<img src="http://imagebin.ca/img/ato4dM.png"
width="50%"
style="border-color: blue; border-width: thin; border-style: solid;
padding: 2px;"/>
</div>
</body></html>