-2

问题是我不是那么先进,所以我肯定做错了什么..

他网站的第一页在 Chrome 和 Firefox 上正确打开,但在 Internet Explorer 页脚图像粘在标题图像上,中间隐藏了两个图像。

网站:http ://www.joniat.com

我试图制作一个类似的登陆 html 页面,其中包含<div>内容,但问题仍然存在。

4

1 回答 1

0

你的问题是这些元素的高度:

<img width="355" height="inherit" alt="Lietuviskai" src="http://joniart.com/wp-content/themes/tut/static_images/ranka_k.jpg" border="0" complete="complete"/>

给他们一个真实的高度

<img width="355" height="300" alt="Lietuviskai" src="http://joniart.com/wp-content/themes/tut/static_images/ranka_k.jpg" border="0" complete="complete"/>

他们应该工作。

来自 MDN:

高度

以 HTML5 CSS 像素或 HTML 4 像素或百分比表示的图像高度。

我不认为ginherit是一个有效的值。

来源:https ://developer.mozilla.org/en-US/docs/Web/HTML/Element/Img

于 2013-08-13T16:47:58.237 回答