gpt4 book ai didi

html - 视差横幅不适用于导航栏

转载 作者:行者123 更新时间:2023-11-28 02:29:06 25 4
gpt4 key购买 nike

我遇到了一个问题,想知道是否有人可以提供帮助。我正在尝试为 uni 元素创建一个网站,但似乎无法使导航栏显示在横幅元素上方。此错误仅在我为横幅添加一些“视差”css 后发生。这是我网站的链接(很难解释) http://itsuite.it.brighton.ac.uk/ar707/mysite/

我附上了下面的css和html(我创建了一个单独的样式表,所以没有包含样式标签)


<div id="navcontainer">
<ul id="navlist">
<li><a id="logo" href="index.html"> </a></li>
<li><a href="index.html">Home</a></li>
<li><a href="guide.html">My Guide</a></li>
<li><a href="contact.html">Contact Me</a></li>

</ul>
</div>

<div id="wrapper">
<!--The 'wrapper' div contains all the page content and can be styled -->
<a id="top"></a>
<!--anchoring the link from the bottom so that i can come to the top of the page-->

<header id="banner">
<!--The main heading for the page -->
<h1>Anish's Learning Journal</h1>
<!-- <img alt="Feel free to use these photos and videos in your work" src="images/dsc_0116.jpg" > -->

</header>

最佳答案

你需要给你的导航一个 z-index 大于你的横幅的 z-index(默认为 0),试试

#navcontainer {
background-color: #323232;
height: 43px;
width: 100%;
position: fixed;
top: 0;
opacity: .95;
z-index: 1;

关于html - 视差横幅不适用于导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47794364/

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