gpt4 book ai didi

html - 导航栏居中和粘性页脚使用 css

转载 作者:行者123 更新时间:2023-11-28 09:24:46 33 4
gpt4 key购买 nike

我一直在寻找答案,但运气不佳。我在这里检查了有关 css 导航栏的信息,但我发现的内容对我不起作用。我正在寻找的可能是一个棘手的问题,但有些网站再次展示了这种类型的设计。我试图让一个导航栏居中,并且有一个粘性页脚......好吧......粘在底部。但这似乎不起作用。这是代码:

html, body{
height: 100 %;margin: 0; padding: 0;
}

.wrapper{
min-height: 100%;
height: 100%;
margin: 0 auto;
}

header{
height: 80px;
background-color: lightgray;
}

nav{
background-color: darkgray;
overflow: auto;
}

nav ul{
margin-top: 10px;
padding: .7em;
position: relative;
float: left;
list-style: none;
background: #444;
background: rgba(0,0,0,.2);
box-shadow: 0 1px 0 rgba(255,255,255,.2), 0 2px 1px rgba(0,0,0,.8) inset;
border-radius: .3em;

}

nav li{
float:left;
}

nav a {
float:left;
padding: .8em 1.5em;
text-decoration: none;
color: #555;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
font: bold 1.1em/1;
letter-spacing: 1px;
text-transform: uppercase;
border-width: 1px;
border-style: solid;
border-color: #fff #ccc #999 #eee;
background: #c1c1c1;
background: linear-gradient(#f5f5f5, #c1c1c1);
}


nav a:hover, nav a:focus {
outline: 0;
color: #fff;
text-shadow: 0 1px 0 rgba(0,0,0,.2);
background: #cc0099;
background: linear-gradient(#cc0099, #db4db8);
}

nav a:active {
box-shadow: 0 0 2px 2px rgba(0,0,0,.3) inset;
}

nav li:first-child a {
border-left: 0;
border-radius: 4px 0 0 4px;
}

nav li:last-child a {
border-right: 0;
border-radius: 0 4px 4px 0;
}


.content{
margin: 5px;
background-color: darkmagenta;
}

footer{
height: 80px;
width: 100%;
background-color: darkblue;
}
<html>
<head>
<link rel="stylesheet" href="test_nav.css" />
</head>
<body>
<div class="wrapper">
<header>Hi there !</header>
<nav>
<ul>
<li><a href="one.html" class="current">One</a></li>
<li><a href="two.html">Two</a></li>
<li><a href="three.html">Three</a></li>
<li><a href="four.html" >Four</a></li>
<li><a href="five.html">Five</a></li>
</ul>
</nav>
<div class="content">Content 1</div>
<div class="content">Content 2</div>
</div>
<footer>Bye bye</footer>
</body>
</html>

不太确定我做错了什么,但很确定我做错了!

最佳答案

要将页脚固定在底部,请使用:

footer{
height: 80px;
width: 100%;
background-color: darkblue;
position: fixed;
bottom: 0px;
z-index: 99999;
}

关于html - 导航栏居中和粘性页脚使用 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25938758/

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