代码之家  ›  专栏  ›  技术社区  ›  VorganHaze

iframe内容与iframes边界重叠

  •  0
  • VorganHaze  · 技术社区  · 6 年前

    我有一个 header 具有特定高度。在它里面,我想放置/加载一个包含下拉菜单的外部html文件。

    <head>
        <style>
            header {
                height: 30px;
            }
        </style>
    </head>
    
    <body>
        <header>
            <iframe src="dropDownMenu.html"></iframe>
        </header>
        <main>[...]</main>
        <footer>[...]</footer>
    </body>
    

    问题是,下拉的项目不会超过 iframe 本身或收割台(肯定是因为 收割台 以及 iframe 边界本身)。

    我试过在 z-index 对于iframe和外部菜单文件本身,没有结果。我也试过 embed object

    iframe内容可能与iframe边界重叠。如果是这样的话,是否可以只使用HTML/CSS?

    1 回复  |  直到 6 年前
        1
  •  2
  •   louierosero    6 年前

    在使用z索引之前,您是否使用了CSS位置。因为如果没有,那么就没有真正的工作,因为它需要CSS的位置。

    有关CSS位置的更多信息,请查看此链接。 https://www.w3schools.com/cssref/pr_class_position.asp