可以更改facebook发送按钮的样式吗?
.pluginButton {
height: 32px !important;
line-height: 32px !important;
}
答案 0 :(得分:0)
我可能需要更多的信息才能理解你想要实现的目标,但是,如果你正在处理插件,你应该能够通过为你的选择器添加更多的特性来实现这一点,例如:
.fb-some-container > .something-else > .pluginButton {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 32px;
line-height: 32px;
}
这样做可以避免使用!important
希望这有助于:)
答案 1 :(得分:0)
不允许更改社交插件的外观,也不可能将它们加载到iframe中。使用您自己的按钮,而不是JS SDK的$
发送功能。
来源:https://developers.facebook.com/docs/sharing/reference/send-dialog