gpt4 book ai didi

html - CSS固定顶部菜单导航在某些元素下

转载 作者:太空宇宙 更新时间:2023-11-04 06:33:25 30 4
gpt4 key购买 nike

我的网站遇到了一个问题:我试图固定上层菜单,现在当我滚动浏览网站时,所有标题和段落都在菜单上:

这是问题的图片 enter image description here

这是固定顶部菜单的 HTML

<div class="topnav" id="myTopnav">
<a href="#" class="active">Home</a>
<a href="#">About</a>
<a href="#">Menu1</a>
<a href="#">Menu2</a>
</div>

这是固定顶部菜单的 CSS

.topnav {
background-color: #333;
overflow: hidden;
position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */
width: 100%; /* Full width */
}

所以问题是:我怎样才能让它成为一切之上的东西?

最佳答案

.topnav {
background-color: #333;
overflow: hidden;
z-index: 100; /* or 999 */
position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */
width: 100%; /* Full width */
}

关于html - CSS固定顶部菜单导航在某些元素下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54442689/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com