我创建了一个共享框,但当我将鼠标悬停在共享按钮上时,它会显示一个奇怪的字符:
屏幕截图:http://i.stack.imgur.com/GoNbq.png
It is live on here: http://www.dip223.com/uncategorized/aliquam-faucibus-lacinia/
我无法找到原因。请帮忙。
答案 0 :(得分:2)
以下元素作为其hoverstate的一部分有text-decoration:underline;
:
<a href="https://twitter.com/intent/tweet?text=Night Life Not For the Faint of Heart - http://www.dip223.com/?p=1075" onclick="window.open(this.href, 'mywin', 'left=50,top=50,width=600,height=350,toolbar=0'); return false;">
只需添加:
.si-share-wmpu a:hover { text-decoration: none; }
到你的CSS应该解决问题。