2013-05-30 44 views
0

我嘗試添加該片段到我的html頁面之間添加空格:HTML和CSS:放置谷歌+1按鈕使其無法元素

<!-- 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按鈕沒有。

有誰知道我可以如何添加空間?

謝謝, 亞歷克斯

回答

1

margin-left: 25px在桌子上ID爲#plusone_table應該做的伎倆。

+0

只是想通了 - 謝謝:) – Genadinik