编辑:我自己修复了它!如果您遇到同样的问题,请遵循以下步骤:
来自
nav {
position: fixed;
width: 100%;
}
到
nav {
position: fixed;
width: 100%;
z-index: 10;
}
我正在进行响应式网站设计。我使用bootstrap4。因此,我有导航菜单,并且在一个部分中有iframe和img标签。当我将页面滚动到底部时,iframe会显示在标题上。标头是粘性的,因此这就是iframe应该位于标头下方的原因。我现在给你显示一个gif ... https://i.imgur.com/4ZMCTsN.gifv 随时询问更多的css / html代码部分,我会让他们知道。
我尝试将页眉(导航菜单)的z-index设置为最高,并更改导航菜单的显示标签以阻止,但这只会破坏一切。
<style>
/* the entire header thing is in external .css file, I just put this here
to show you guys */
nav {
position: fixed;
width: 100%;
}
</style>
<div id="tab1" class="tab-pane active">
<h4><i class="fas fa-map-marker-alt"></i> Our Location <small>More like our favourite surf spot</small></h4>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6048.676068967504!2d-73.96889056972904!3d40.710574467186305!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c25bd9abcea3c7%3A0x34a2832eedb859d8!2sGiando+on+the+Water!5e0!3m2!1sfi!2sfi!4v1550400186363" width="100%" height="200" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
答案 0 :(得分:1)
我知道了!如果还有其他人遇到同样的问题,请更改它...
来自
flask run
到
nav {
position: fixed;
width: 100%;
}