我正在学习,但我有一个问题。我有一个用css中的背景图像完成的页脚,做成一个链接。使用的文本缩进:-9999px;摆脱页脚图像顶部的 H1 。有人告诉我写在那里的 h1 在语义上是正确的,所以搜索引擎仍然可以看到它。然后用文本缩进隐藏它。我想在该页脚顶部放置四个社交媒体图标,这些图标可作为链接点击。我一直卡住。
<footer id="footer">
<section id="socialmedia">
<a href="http://www.facebook.com/BenoitBelgium">
<img src="../images/facebook.png" width="56" height="54" alt="Facebook icon" title="Go to Facebook." />
</a>
<a href="http://www.facebook.com/brilliantben">
<img src="../images/pinterest.png" width="54" height="54" alt="Pinterest icon" title="Go to Pinterest" />
</a>
<a href="http://www.facebook.com/BenoitBelgium">
<img src="../images/twitter.png" width="54" height="54" alt="Twitter icon" title="Go to Twitter." />
</a>
<a href="http://www.facebook.com/BenoitBelgium">
<img src="../images/behance.png" width="55" height="54" alt="Behance icon" title="Go to Behance." />
</a>
</section>
<h1><a href="#">Goodbye, feel free to follow</a></h1>
</footer>
这是我的 CSS。
#footer {
background-image: url(../images/footer.png);
height:214px;
width: 960px;
background-repeat: no-repeat;
background-position: center;
margin: 0 auto;
border-style: solid;
border-width: 1px;
}
#footer a {
text-indent: -9999px;
height:214px;
width:100%;
display:block;
}
谢谢