gpt4 book ai didi

html - 导航栏开始处的小空间防止居中

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

所以我使用无序列表来创建水平导航栏,并且我想使该工具栏居中。但是,当我使用 text-align:center 时,工具栏开始处有一个小空间导致它稍微偏离中心。这是一张未居中的图片:

Uncentered nav bar

我想让“主页”正好靠在最左边的边框上。但是好像有20px左右的空间。这是居中导航栏的图片:

Centered nav bar

我觉得它偏离了中心,因为“主页”按钮与“Tristan Gianola”稍微偏离了中心。这是 CSS 和 HTML:

nav{font-family: 'Roboto Condensed', sans-serif;
font-size:14px;
text-transform:uppercase;
margin:0;
padding:0;
margin-top:50px;
border:solid 5px red;
text-align:center;}
nav ul{border:solid 5px green;}
nav ul li{display:inline;
margin:2px;}
nav ul li strong{text-decoration:none;
color:#003434;
background:#f2f2f2;
padding:10px;}
nav ul li a{text-decoration:none;
color:#f2f2f2;
background:#003434;
padding:10px;
border-bottom:solid 1px white;}
nav ul li a:hover{background:grey;}
<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
</head>

<body>
<!--site navigation / toolbar-->
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="media.html">Media</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>

<h1>Tristan Gianola</h1>

</body>
</html>

非常感谢您提前阅读/回答。

最佳答案

<ul>default have 40px padding on the left 提供,删除它,它将完全居中:

nav ul{
border:solid 5px green;
padding:0;
}

JSFiddle Demo

关于html - 导航栏开始处的小空间防止居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31947310/

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