Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 5 个社交按钮的浮动栏。只有 Facebook 按钮向左移动了大约 20 像素。
在元素检查器下按钮的数十个 CSS 元素中,当我停用position: absolute;下面的代码时,按钮会转到其正常位置。但我不确定这是否是合适的解决方案,因为它会影响其他浏览器中的行为。
position: absolute;
.fb_iframe_widget iframe { position: absolute; }
你对这个问题有什么想法吗?感谢您的帮助。
您可以尝试将其添加到您的 CSS:
.fb_iframe_widget iframe { position: relative !important; }
那应该解决它。
我今天也遇到了这个问题。Facebook 最近似乎对“赞”按钮进行了更改。我现在使用 Fb Like 按钮将此代码添加到我的所有网站。