CSS:
.share {
width: 150px;
height: 20px;
background: #000;
float: right;
white-space: nowrap;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 3px;
background-color:rgba(255, 255, 255, 0.5);
border-bottom-left-radius: 5px;
box-shadow: 0px 0px 10px #888;
vertical-align: top;
}
HTML:
<div class="share">
<div class="fb-like" data-href="http://bronies.info/" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true" style="width:47px; overflow:hidden; top:-3px; left:3px;"></div>
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Wondered what the bronies were all about?" data-count="none">Tweet</a>
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" style="width:32px; overflow:hidden;"></div>
</div>
铬,Safari:
Internet Explorer、Firefox 和 Opera:
如果您可以看到我在 HTMLstyle
属性中所做的事情,我使用top:-3px
了 ,并且我在其他浏览器上测试我的网站之前这样做了(Chrome 是我的主要网络浏览器)。我之所以使用它top
是因为快速的 Google 搜索会引导我进入一个页面,指示我这样做。既然这个解决方案不起作用,我将如何调整它以在所有 Web 浏览器上对齐和工作?