我把这个自动生成的Facebook分享按钮

    <div class="fb-share-button" data-href="http://www.kafiyedizini.com" data-type="box_count"></div>


to my website

但是当我将鼠标悬停在其上时,该文本带有下划线。

See the caps here

当鼠标悬停在Facebook共享按钮上时,我不希望在下划线文本。

如何做到这一点?

谢谢。

最佳答案



.fb-share-button {
   text-decoration:none;
 }


如果已经应用,请使用text-decoration:none !important

.fb-share-button {
   text-decoration:none !important;
 }

10-04 15:12