AddThis按钮CSS问题

前端之家收集整理的这篇文章主要介绍了AddThis按钮CSS问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在AddThis论坛上提出了这个问题,但迄今为止还没有任何答复.希望有人可以帮助我.

页面http://preview.ami.co.nz/products,在右下角.

>如果在Chrome或Firefox中查看,“Share”一词位于橙色“AddThis”按钮的左侧.
>然而,在IE(至少IE8和6),“分享”这个词是对的!它应该是像Chrome和FF一样,但我无法弄清楚IE在做什么.

为了使事情变得更加独特 – 所有浏览器中不同页面上的相同代码看起来都是正确的!退房http://preview.ami.co.nz

任何建议将不胜感激.

PS.这是我把这些页面标记

<!-- AddThis Button BEGIN -->
  <div class="addthis_toolBox addthis_default_style" style="display: <%= SocialMediaVisibility %>">
    <a class="addthis_button_compact">Share</a>
    <a class="addthis_button_facebook"></a>
    <a class="addthis_button_twitter"></a>
    <a class="addthis_button_email"></a>
  </div>
  <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e0a5ac2480330c8"></script>
<!-- AddThis Button END -->

解决方法

只需更改您的网站的HTML
<a class="...">
<span class="the_icon_class"></span>
share
</a>

<a class="...">
<span>share</span>
<span class="the_icon_class"></span>
</a>
原文链接:https://www.f2er.com/css/216648.html

猜你在找的CSS相关文章