Html 网页图像href-小横线

Html 网页图像href-小横线,html,css,Html,Css,出于某种原因,我在我的网站标题上放置的每个社交媒体图片的右下角都有一条很小的水平线。我试图找到一个解释,解释它们为什么会出现,更重要的是,如何隐藏它们。有人知道如何移除它们吗?多谢各位 代码: 奇伦 @font-face/*对浏览器和IE v10以后版本的支持*/ {font-family:homefont;src:url(“font.ttf”);} {font-family:headerfont;src:url(“playball.ttf”);} 正文{background:url('im

出于某种原因,我在我的网站标题上放置的每个社交媒体图片的右下角都有一条很小的水平线。我试图找到一个解释,解释它们为什么会出现,更重要的是,如何隐藏它们。有人知道如何移除它们吗?多谢各位

代码:


奇伦
@font-face/*对浏览器和IE v10以后版本的支持*/
{font-family:homefont;src:url(“font.ttf”);}
{font-family:headerfont;src:url(“playball.ttf”);}
正文{background:url('img/mybackground3.jpg')无重复中心已修复;}
#标题容器{背景:#00E5EE;边框:0px实心#666;高度:70px;左侧:0;位置:固定;宽度:100%;顶部:0;}
#标题{填充:0.3em 0;边框底部:0px;溢出:隐藏;缩放:1;线条高度:0px;边距:0自动;宽度:940px;文本对齐:右侧;显示:内联块;浮动:右侧;垂直对齐:底部;}
#包装{宽度:900px;边距:0自动;}
a{color:#444;}
.logo{左边距:600px;右边距顶部:100px;背景:#fff;填充:10px;}
.bigtitle{字体系列:homefont;字体大小:120px;文本对齐:居中;页边空白顶部:200px;}
.header{top:100%;left:50%;字体系列:headerfont;字体大小:20px;颜色:#FFFFFF;字体样式:斜体;padding top:0px;padding bottom:0px;padding right:20px;padding left:0px;}

跟我来:


您缺少所有的
结束标记…


<a style="margin:0;" href="http://www.linkedin.com/pub/chilun-liu/1b/297/416"> View my Linkedin Profile</a> <img src="/img/linkedin-lnk.gif" width="40" height="40">
<a style="margin:0;" href=""> Email me </a><img src="/img/email-lnk.gif" width="40" height="40">
<a style="margin:0;" href="http://www.youtube.com/user/chilunliu"> View my Youtube Channel</a><img src="/img/youtube-lnk.gif" width="40" height="40">

这就是你的a标签应该关闭的方式

接下来是所有其他人关于用
关闭
标签的说法
您需要在css中设置此选项。我也有同样的问题,
文本装饰:无是我的解决方案

Css

a { text-decoration: none};
检查已更改的标签

<a style="margin:0;" href="http://www.linkedin.com/pub/chilun-liu/1b/297/416"> View my Linkedin Profile </a>
<img src="/img/linkedin-lnk.gif" width="40" height="40">
<a style="margin:0;" href=""> Email me </a>
<img src="/img/email-lnk.gif" width="40" height="40">
<a style="margin:0;" href="http://www.youtube.com/user/chilunliu"> View my Youtube Channel</a><img src="/img/youtube-lnk.gif" width="40" height="40">

下面是标记的结果,没有下划线:)

查看我的Linkedin个人资料 给我发电子邮件 查看我的Youtube频道


希望这有帮助。

其中一个答案对您的问题有帮助吗?
<a style="margin:0;" href="http://www.linkedin.com/pub/chilun-liu/1b/297/416"> View my Linkedin Profile </a>
<img src="/img/linkedin-lnk.gif" width="40" height="40">
<a style="margin:0;" href=""> Email me </a>
<img src="/img/email-lnk.gif" width="40" height="40">
<a style="margin:0;" href="http://www.youtube.com/user/chilunliu"> View my Youtube Channel</a><img src="/img/youtube-lnk.gif" width="40" height="40">