gpt4 book ai didi

html - 中心导航栏链接

转载 作者:行者123 更新时间:2023-11-28 00:22:53 25 4
gpt4 key购买 nike

我似乎无法将导航栏按钮居中。有没有办法在 css 文件中执行此操作?我试过居中,但没用。

HTML

<div class="navbar">
<a href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
</div>

CSS

.navbar {
overflow: hidden;
background-color: #333;
position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */
width: 1300px; /* Full width */
z-index: 99999;
text-align: center;
}

/* Links inside the navbar */
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
background: #ddd;
color: black;
}

最佳答案

/* Links inside the navbar */
.navbar a {
display:inline-block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

我已经修改了“.navbar a”的样式。希望它对您有用。

关于html - 中心导航栏链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54798006/

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