gpt4 book ai didi

html - 导航链接不会以我的页面为中心

转载 作者:行者123 更新时间:2023-11-28 16:07:52 25 4
gpt4 key购买 nike

我遇到的问题是,无论我尝试什么,我似乎都无法将导航栏居中。我是 HTML/CSS 世界的新手,无法理解这一点。如果你能看一看,看看你是否能想到如何将它们居中,那将不胜感激!

这是问题的图片:enter image description here

我的部分 HTML 代码:

    <title>Neon Angels</title>
</head>

<body class="fix">
<div id="wrapper">

<div class="section black" id="section1">
<h2 id="welcome">The Neon Angels Welcome You!
<img src="wingslogo.svg" alt="" id="top">
<img src="wingslogo.svg" alt="" id="top2">
</h2>
<p>
<img src="wings.jpg" alt="wings" width="750" id="wings">
</p>

<ul class="nav">
<li><a href="#section2" style="text-decoration:none">About Us</a></li>
<li><a href="#section3" style="text-decoration:none">Painting with Light</a></li>
<li><a href="#section4" style="text-decoration:none">Portraits</a></li>
<li><a href="#section5" style="text-decoration:none">Nature</a></li>
<li><a href="#section6" style="text-decoration:none">Contact Us</a></li>
</ul>

<div class="mouse">
<div class="mouse-icon">
<span class="mouse-wheel"></span>
</div>
</div>
</div>
</div>
</body>
</html>

CSS 代码:

.nav{
padding-left: 250px;
padding-right: 250px;
margin-left: 500px;
width: 1000px;
list-style: none;
}

.black ul li{
display:inline;
color:#aaa;
float:left;
}
.black ul li a{
padding:0px 10px;
color:#f0f0f0;
}
.black ul li a:hover{
text-decoration: none;
color: #80F9FF;
font-style: normal;
font-weight: 400;
font-family: aguafina-script;
}

#wrapper{
width: 100%;
margin: 0 auto;
}

最佳答案

试着把你的 .nav 变成这样:

.nav {
list-style: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
}

这是一个愚蠢的演示:http://codepen.io/antibland/pen/MyZprK

关于html - 导航链接不会以我的页面为中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37035561/

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