我们看到像facebook一样的奇怪行为按钮。用例如下:
position: absolute
上移动,现在是1000px高,透明元素覆盖了页面上比FB类按钮更低的所有元素。 / LI>
以下是我们看到的一些其他奇怪的行为:
display: block
。答案 0 :(得分:5)
显然这是一个已知问题。
https://developers.facebook.com/x/bugs/663421210369743/
我们已使用以下方法解决了这个问题:
.fb-like {
display: inline-block !important;
vertical-align: middle !important;
margin-right: 1.5em;
line-height: 30px;
width: 81px !important;
height: 22px !important;
position: relative;
z-index: 1002;
}
.fb-like > span {
vertical-align: top !important;
min-width: 81px !important;
min-height: 22px !important;
}
.fb-like > span > iframe {
min-width: 81px !important;
min-height: 22px !important;
}