为什么我的水平导航偏离中心?

时间:2019-06-27 20:03:08

标签: html css

这个问题使我发疯。假定我的导航链接和徽标在标题中水平居中,而徽标直接位于导航链接的中心。出于某种原因,所有内容都稍微偏离中心,并向左偏移了大约3/4英寸。我是Web建设的新手,并且花了数小时研究和试验不同的代码。我无法弄清楚需要更改或添加的内容事物并使所有事物都完美地居中。非常感谢您的帮助。

我将包含用于悬停效果的代码,以防万一我的问题在那里。

body {
  margin: 0;
  line-height: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  height: 100%;
}

.cc_nav {
  display: flex;
  width: 100%;
  margin-top: 0;
  padding-top: 10px;
  height: 20%;
  justify-content: center;
}

.cc_nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  text-align: center;
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 40px;
  font-family: Tenar Sans;
  font-size: .8em;
  display: inline-block;
}

a {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgb(192, 192, 192);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#logo_Claire {
  max-height: 140px;
  max-width: 300px;
}

.noHover:hover::before {
  background: none;
  visibility: hidden;
}
<header>
  <div class="cc_nav" id="centered_nav">
    <a href="index.html">HOME</a>
    <a href="services.html">SERVICES</a>
    <a href="about.html">ABOUT</a>
    <a href="index.html" class="noHover"><img src="images/logo_6.png" alt="Claire Crawford" id="logo_Claire" /></a>
    <a href="portfolio.html">PORTFOLIO</a>
    <a href="blog.html">BLOG</a>
    <a href="contact.html">GET IN TOUCH</a>
    <div>
</header>

1 个答案:

答案 0 :(得分:1)

这似乎是因为导航中的每个项目都具有不同的宽度,较长的单词更宽,因此,如果每侧的项目数量相同,而右侧的项目较长,则其他项目似乎位于左侧

尝试添加

a {
  flex-basis: 0;
  flex: 1;
}