删除间隙中的下划线链接

时间:2014-05-18 06:35:20

标签: html css font-awesome-4

抱歉,我的英文。

嗨,我在一些参考资料中使用FontAwesome我需要在图标之间删除下划线文字链接,是否有这种可能性?

enter image description here

<p><a href="#"><i class="fa fa-user"></i> Username</a></p>

JSFiddle

中的模式

3 个答案:

答案 0 :(得分:1)

删除空格并在i标记内使用填充

a:hover {text-decoration:none;}
a i {text-decoation:none; padding-right:5px}

http://jsfiddle.net/jEh6J/2/

答案 1 :(得分:0)

a:hover {text-decoration:none;}
a {text-decoration:none;}

http://jsfiddle.net/jEh6J/1/

答案 2 :(得分:0)

Fiddle

如果您想删除ai之间的界限,请添加填充符:padding-right

a:hover {text-decoration:none;}
a i { text-decoration:none; padding-right:10px;}

此外,在文本“用户名”之前删除空格。无论如何我把它固定在小提琴里。

结果

enter image description here