【发布时间】:2017-10-13 15:50:13
【问题描述】:
我尝试将导航段落居中,它不会居中。我现在尝试了很多东西,但找不到结果。
这是我的 CSS:
header {
background: #444444;
z-index: 100;
transition: height 600ms 0s ease;
position: fixed;
top: 0;
right: 0;
left: 0;
color: #ffffff;
}
#head {
font-family: quicksand;
text-align: center;
}
nav {
background: #333333;
position: fixed;
top: 82px;
right: 0;
left: 0;
color: #ffffff;
}
.navs {
font-family: quicksand;
font-size: 18px;
text-align: center;
display: inline-block;
}
a,
a:link,
a:visited,
a:hover {
text-decoration: none;
color: white;
font-family: quicksand
}
#left {
margin-right: 15px;
}
Here is my HTML :
<header>
<h1 id="head">Resume - Mathias Nicolajsen</h1>
</header>
<nav>
<a href="diagonaler.html"><strong><p class="navs" id="left">Projecter</p></strong></a>
<strong><p class="navs">Omkring mig</p></strong>
</nav>
<p>Lavet af Mathias Nicolajsen</p>
我该怎么做?
【问题讨论】:
-
你试过 margin:0 auto 和 float:none
-
你能分享你的html sn-p