我创建了一个 div,在其中放置了一些超链接。在这些上,我添加了一些样式,当我将鼠标悬停在它们上面时,它们会得到一个下划线,非常简单。但是当我试图将鼠标悬停在它们上面时,会出现一条不寻常的小线。
这是jsFiddle。
HTML:
<section id="header">
<div id="header-links-holder">
<a href="#"><span>HOME</span>
<a href="#"><span class="no-spacing">ABOUT US</span></a>
<a href="#"><span>PORTFOLIO</span></a>
<a href="#"><span class="no-spacing">CONTACT US</span></a>
</div>
</section>
CSS:
html, body{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#header {
width: 100%;
height: 30%;
background-image: url(http://www.7daysinhavana.com/wordpress/wp-content/themes/7days/images/commun/back_header_global.jpg);
font-family: 'GarageGothicBlackRegular';
word-spacing: 20px;
font-size: 25px;
text-align: center;
position: relative;
}
#header-links-holder {
position: absolute;
width:100%;
bottom: 0px;
}
#header a {
color: black;
text-decoration: none;
}
#header a:hover{
text-decoration: underline;
}
.no-spacing {
word-spacing: 0px;
}
尝试将鼠标悬停在HOME
链接上并查看结果。
我该如何解决这个错误?