How to make facebook comment box width 100%?

前端 未结 9 525
逝去的感伤
逝去的感伤 2021-01-18 00:27

i am using this code to put a facebook comment box to my page,



        
9条回答
  •  有刺的猬
    2021-01-18 01:01

    With jQuery you can over-write the hard-coded width before it loads the Facebook comment box.

    $('document').ready(function(){
        $('.fb-comments').attr('data-width',$('body').width());
    });
    

    p.s. you can replace 'body' with any other element you want the comment box to match.

提交回复
热议问题