Internet Explorer中的框架集边框问题
我正在使用以下代码制作一个框架集页面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<frameset rows="*,65" border="0" framespacing="0" >
<frame src="page.html" />
<frame src="footer.html" scrolling="no" />
</frameset>
</html>
它在 Firefox 和 Safari 中看起来很好,但在 IE8 中则不然,页脚上方仍然有一个粗丑的边框。我该如何解决这个问题?
I am making a frameset page with the following code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<frameset rows="*,65" border="0" framespacing="0" >
<frame src="page.html" />
<frame src="footer.html" scrolling="no" />
</frameset>
</html>
It looks so nice in Firefox and Safari but not in IE8, There is still a thick ugly border above the footer. How can I fix this problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为是
I think it was