抱歉,我的英文。
嗨,我在一些参考资料中使用FontAwesome我需要在图标之间删除下划线文字链接,是否有这种可能性?
<p><a href="#"><i class="fa fa-user"></i> Username</a></p>
中的模式
答案 0 :(得分:1)
删除空格并在i标记内使用填充
a:hover {text-decoration:none;}
a i {text-decoation:none; padding-right:5px}
答案 1 :(得分:0)
a:hover {text-decoration:none;}
a {text-decoration:none;}
答案 2 :(得分:0)
如果您想删除a
和i
之间的界限,请添加填充符:padding-right
a:hover {text-decoration:none;}
a i { text-decoration:none; padding-right:10px;}
此外,在文本“用户名”之前删除空格。无论如何我把它固定在小提琴里。