很抱歉告诉你,答案是:做一个现代的 HTML 教程!您应该尝试Code Academy,他们为初学者和中级提供直接反馈的互动课程。看来您被一本旧的 HTML 3/4 书困住了,这对您没有任何好处。但是我也为您的链接问题得到了一个直接的答案:这个小提琴,您将图像作为背景图像包含在内,并且通过有效地使用您的类和选择器,如果您想添加一些东西,您必须编写(主要是复制+粘贴)很少的行. 你用这个 CSS 部分做的最多:
.socialmedia a {
display: block; /* Because the image is probably higher than the text */
height: 50px; /* you have to set it to block and height 50px to show the image */
padding-left: 55px; /* make room for the background image(50px) and extra margin(+5px) */
padding-top: 12px; /* center in the middle of the image */
padding-bottom: 12px;
text-decoration: none;
}
示例 g+:CSS:
.g a {
background: url(logo_g_50x50.png) no-repeat;
}
HTML
<li class="g"><a href="plus.google.com/meeeeee">+1 me on g+</a></li>
并做了!它更易于阅读,甚至更易于维护,以供以后重用或添加