Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/75.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 为什么我根本看不到两个iFrame?_Html_Css_Iframe - Fatal编程技术网

Html 为什么我根本看不到两个iFrame?

Html 为什么我根本看不到两个iFrame?,html,css,iframe,Html,Css,Iframe,我决定在这件事让我发疯之前问一下。标题不言自明 以下是html部分: <div id="iframeList"> <iframe src="list.php"> </div> <div id="iframeDownloads"> <iframe src="../mailer/print/index.php" name="downloads&quo

我决定在这件事让我发疯之前问一下。标题不言自明

以下是html部分:

<div id="iframeList">
  <iframe src="list.php">
</div>
<div id="iframeDownloads">
  <iframe src="../mailer/print/index.php" name="downloads" id="downloads">
</div>
<div id="iframeErrors">
  <iframe src="../admin/errors.php">
</div>
我知道CSS文件是由HTML页面导入和使用的

此外,这是源代码或HTML页面。在那里,第一次之后的一切(包括第一次)

</div> 

是灰色的。这里不显示它

<div id="iframeList">
  <iframe src="list.php">
</div>
<div id="iframeDownloads">
    <iframe src="../mailer/print/index.php" name="downloads" id="downloads">
</div>
<div id="iframeErrors">
    <iframe src="../admin/errors.php">
</div>


该页面仅显示第一个iframe,它位于一个小框中。

必须关闭iframe标记

<div id="iframeList">
  <iframe src="list.php"></iframe>
</div>
<div id="iframeDownloads">
    <iframe src="../mailer/print/index.php" name="downloads" id="downloads"></iframe>
</div>
<div id="iframeErrors">
    <iframe src="../admin/errors.php"></iframe>
</div>


谢谢!我把三个都关了。现在我只看到了前两个iframe,但仍然是小盒子。事实上,我可以看到所有三个iframe。@7segment很高兴听到这个消息。若答案对你们有用,别忘了向上投票并接受它。@7你们也可以点击向上投票(这个答案很有用)。
<div id="iframeList">
  <iframe src="list.php"></iframe>
</div>
<div id="iframeDownloads">
    <iframe src="../mailer/print/index.php" name="downloads" id="downloads"></iframe>
</div>
<div id="iframeErrors">
    <iframe src="../admin/errors.php"></iframe>
</div>