我正在停止一个简单的主页,并在那里使用youtube徽标来建立连接链接。但是徽标上面有一个意想不到的标记(我在附件中用标记突出显示)。我的HTML代码有什么问题? 查看demo。
另外如何移动"找到我"一点点离开了吗? Attachment
我在下面粘贴了我的HTML和CSS代码:
.HTML文件:
<img src="about_me_modified.PNG" width="80%" height="50%"/>
<p id="find_me_on"><br /><br />Find me on:<br><br><a href="https://www.facebook.com/zabirfatah"><img src="fblogo.PNG" /></a><br><a href="https://twitter.com/jabirfatah91"><img src="twitterlogo.PNG" /></a><br><a href="https://www.youtube.com/user/jabirfatah"><img src="youtubelogo.PNG" />
</a><br><a href="https://plus.google.com/100402704740320621129/about"><img src="googleplus-logo.PNG" /></a><br><a href="https://www.linkedin.com/pub/jabir-al-fatah/5b/50b/2b1"><img src="linkedinlogo.PNG" />
</a></p>
.CSS文件:
#find_me_on{
float:right;
margin-right:20px;
}
答案 0 :(得分:0)
答案 1 :(得分:0)
尝试以下代码。该行是因为新的行间距是img
标记的末尾和a
标记的结尾。您可以将a
标记部分包含在div
。
<img src="about_me_modified.PNG" width="80%" height="50%"/>
<p id="find_me_on">
<br /><br />Find me on:
<div class="find_links">
<br>
<a href="https://www.facebook.com/zabirfatah"><img src="fblogo.PNG" /></a>
<br>
<a href="https://twitter.com/jabirfatah91"><img src="twitterlogo.PNG" /></a>
<br>
<a href="https://www.youtube.com/user/jabirfatah"><img src="youtubelogo.PNG" /></a>
<br>
<a href="https://plus.google.com/100402704740320621129/about"><img src="googleplus-logo.PNG" /></a>
<br>
<a href="https://www.linkedin.com/pub/jabir-al-fatah/5b/50b/2b1"><img src="linkedinlogo.PNG" /></a>
</div>
</p>
<style>
#find_me_on{
float:right;
margin-right:20px;
}
#find_me_on div.find_links {
padding-left: 5px;
}
#find_me_on div.find_links a {
text-decoration: none;
}
</style>