请帮助。似乎无法让我的HTML和CSS在这里匹配...在页眉中,我想要包含一个我在样式表中格式化的链接,如下所示:
#header
{
width: 100%;
z-index:8888;
margin: auto;
position: fixed;
height: 60px;
top: 0px;
left: 0px;
text-align: left;
border-bottom: 1px solid #000000;
background-color: rgba(255,255,255,0.9);
}
#header a.nav4
{
display: text;
text-decoration: none;
font-family: didot;
font-size: 38px;
color: #ffffff;
border-bottom: none;
background: transparent;
font-weight: normal;
line-height: 60px;
font family: didot;
}
我使用的HTML如下:
<div id="header">
<a href="http://stackoverflow.com" class=“nav4”>Stack Overflow</a>
</div>
然而,它实际上并没有像它应该出现的那样,它显示为一个未格式化的链接!
有关问题的任何建议吗?