【发布时间】:2014-08-13 10:03:07
【问题描述】:
我正在尝试在页面上设置 Facebook 点赞和 Google +1 按钮。但是,它们的宽度太大:
我将它们定义如下:
<table id="plusOneButtons">
<tr>
<td id="fbLikeButton"><iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FLigatures.Net&width&layout=button_count&action=like&show_faces=false&share=true&height=21&appId=58053763610" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe></td>
<td id="googlePlusOneButton"><div class="g-plusone" data-size="medium"></div></td>
<td id="twitterShareButton"><div><a href="https://twitter.com/share" class="twitter-share-button" data-via="LigaturesNet">Tweet</a></div></td>
</tr>
</table>
CSS 是:
#fbLikeButton {
width: 100px;
background: red;
}
#googlePlusOneButton {
width: 100px;
background: greenyellow;
}
#twitterShareButton {
width: 100px;
background: aliceblue;
}
如何设置合适的宽度?我已经检查过这个question,但解决方案不起作用。
【问题讨论】:
标签: html css facebook-iframe