Frameset border problem in Internet explorer

可紊 提交于 2019-12-02 05:43:46

问题


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 ?


回答1:


I think it was

frameborder="0"


来源:https://stackoverflow.com/questions/2178791/frameset-border-problem-in-internet-explorer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!