gpt4 book ai didi

css - 导航栏向右移动 - 为什么?

转载 作者:太空宇宙 更新时间:2023-11-04 12:45:36 24 4
gpt4 key购买 nike

我正在制作一个可爱的网站,虽然我希望在页面底部有一个固定的固定导航栏,但它似乎固定在底部但在左侧它似乎在大约一厘米后开始。右边的轻微开始让我很生气。我当然没有告诉它这样做。我想要一个固定在底部的固定导航栏。我的 CSS 中缺少什么?

html { 
background: url(../images/mexicobeach.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

h1 {
font-family: 'Sansita One', cursive;
font-size: 82px;
text-align: center;
margin: 60px 0 0 0;
}

h2 {
font-family: 'Sansita One', cursive;
font-size: 120px;
text-align: center;
margin: 60px 0 0 0;
}

.nav {
position:fixed;
bottom:0px;
font-family: 'Sansita One', cursive;
width:100%;
height:50px;
padding: 0px;
text-align: center;
}

ul {
padding: 10px;
background: rgba(8, 102, 112, 0.5);
}
li {
display: inline;
padding: 10px 20px 0px 30px;
}
a {
color: white;
}
<!DOCTYPE html>

<head>
<link rel="stylesheet" type="text/css" href="css/mexicostylesheet.css" />
<link href='http://fonts.googleapis.com/css?family=Sansita+One' rel='stylesheet' type='text/css'>
<title>Smithies in Mexico</title>
<style>
</style>
</head>

<body>
<div class="nav">
<div class="container">
<ul id="navigation">
<li><a href="subpageabout">About</a></li>
<li><a href="subpagestay">Stay</a></li>
<li><a href="subpagedo">Do</a></li>
<li><a href="subpageeat">Eat</a></li>
<li><a href="subpagemexicanmadlibs">Mexican Mad Libs</a></li>
<li><a href="subpagetacogame">Taco Game</a></li>
<li><a href="subpagecountdown">Countdown</a></li>
<li><a href="subpagequiz">Quiz</a></li>
</ul>
</div>
</div>

<div class="jumbotron"
<div class="container">
<h1>Smith Ladies Go To</h1>
<h2>Mexico</h2>
</div>
</div>
</div>


</body>

最佳答案

您需要为固定导航添加 left 值:

.nav {
position:fixed;
bottom:0px;
left:0; /*ADD THIS*/
font-family: 'Sansita One', cursive;
width:100%;
height:50px;
padding: 0px;
text-align: center;
}

JsFiddle 上的演示

关于css - 导航栏向右移动 - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26537201/

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