当宽度设置为810px时,是否可以删除Facebook页面标签中的垂直滚动条。
请注意,当我的宽度设置为正常(810px)时,我在 Facebook页面标签中讨论iframe。后端没有高度选项。
我搜索了很多,但每个人都在谈论宽度为520px的旧facebook页面标签。
答案 0 :(得分:0)
我使用这个功能:
FB.Canvas.setSize({ width: 810, height: 1050 });
作为完整设置的一部分,紧跟在开始标记之后:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({appId:YOUR_APP_ID_HERE,status:true,cookie:true,xfbml:false});
FB.Canvas.setSize({ width: 810, height: 1050 });
};
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
接下来,请确保您没有任何将html元素上的overflow-y属性设置为“滚动”的CSS。我见过设置此属性的css重置。