0

我尝试将此片段添加到我的 html 页面:

<!-- Place this tag where you want the +1 button to render. -->
<div class="g-plusone" data-size="tall" data-annotation="inline" data-width="300"></div>

<div style="background-color: red; float:left; padding-left: 125px; margin-left: 125px;">
<!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>
</div>

并且它在那里放置了 +1 按钮,但没有在按钮左侧放置任何空白。我在这个页面上测试它:http: //www.problemio.com/business/how_to_get_business_ideas.php

所以你可以看到所有其他社交按钮之间都有一个空格,但 +1 按钮没有。

有人知道我如何添加空间吗?

谢谢,亚历克斯

4

1 回答 1

1

margin-left: 25px在带有 id 的桌子上#plusone_table应该可以解决问题。

于 2013-05-30T16:03:44.760 回答