Firefox IFrame问题(从3.6版到8版)

Firefox IFrame问题(从3.6版到8版),firefox,iframe,Firefox,Iframe,下面是代码。这在IE8和Chrome上运行良好,但在Firefox升级到版本8时,我遇到了一个问题 问题:-在Firefox上,它只显示一些广告,而不是实际内容 谁能帮我一下吗?谢谢你的帮助 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <t

下面是代码。这在IE8和Chrome上运行良好,但在Firefox升级到版本8时,我遇到了一个问题

问题:-在Firefox上,它只显示一些广告,而不是实际内容

谁能帮我一下吗?谢谢你的帮助

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

        <style type="text/css">
            <!--
            #container{
                overflow:hidden;
            }
            #container iframe {
                width:1000px;
                height:930x;
                margin-left:-680px;
                margin-top:-230px;
                border:0;
             }
            -->
        </style>

    </head>
    <body >
        <div id="container">
            <iframe src="http://www.tsn.ca/" scrolling="no" height="930"></iframe>
        </div>
    </body>
</html>


尝试使用iframe使用的相同字符集,即
utf-8

谢谢并尝试过,但也没有帮助。我做错什么了吗?