gpt4 book ai didi

html - 将标题固定到屏幕顶部

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

我有一个包含导航栏和图像的标题部分。它是白色背景上的黑色标题。

<header id="header">
<img id="header-img" src="https://ruwix.com/rubiks-cube-image.php?n=4&fl=xpxyowrrbygywygowbgwyowrrxyorgybrrwyrwybwyowbgwb&bg=AABBBB&m=xy&f=png&size=200&b=40&d=5" height=100 width=100>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#home">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#catalogue">Catalogue</a></li>
</ul>
</nav>
</header>

我想将它固定在屏幕顶部,以便始终可见。

到目前为止我的CSS是

.nav-list-link {
display: inline;
padding-left: 10px;
}

#header {
display: flex;
position: fixed;
width: 100%;
background-color: black;
}

页面的其余部分在它后面升起。当我将宽度调整为 100% 时,它会扩展到整行长度,但会在左侧留出一些空间。另外,它上面还有我似乎无法缩小的空间。

我希望页眉位于页面顶部,顶部或两侧没有多余空间。

最佳答案

我解决了问题并改进了您的代码

body {margin:0;}

.navbar {
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}

.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}

.navbar a:hover {
background: #ddd;
color: black;
}

.main {
padding: 16px;
margin-top: 30px;
height: 1500px; /* Used in this example to enable scrolling */
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

</style>
</head>
<body>
<header>

<div class="navbar">
<img id="header-img" src="https://ruwix.com/rubiks-cube-image.php?n=4&fl=xpxyowrrbygywygowbgwyowrrxyorgybrrwyrwybwyowbgwb&bg=AABBBB&m=xy&f=png&size=200&b=40&d=5" height=50 width=50 style="float: left">
<a href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
</div>
</header>

<div class="main">
<h1>Fixed Top Navbar</h1>
<h2>Scroll this page to see the effect</h2>
<h2>The navigation bar will stay at the top of the page while scrolling</h2>
</div>

</body>
</html>

关于html - 将标题固定到屏幕顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51459469/

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