0

我创建了一个 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链接上并查看结果。

我该如何解决这个错误?

4

2 回答 2

4

这是一个错字,你没有关闭你的a标签

<a href="#"><span>HOME</span></a>

演示

始终使用验证器来避免此类错误并使用诸如firebug之类的调试工具

注意:还可以查看您的 HTML 文档的源代码,据我所知,Firefox 会以红色突出显示杂散标签

于 2013-06-18T16:04:16.877 回答
1

这是你的问题:

<a href="#"><span>HOME</span>

你忘了结束

    <a href="#"><span>HOME</span></a>
于 2013-06-18T16:03:53.607 回答