jQuery - Fancybox: But I don't want scrollbars!

前端 未结 24 1979
醉话见心
醉话见心 2020-12-15 17:37

I am using jQuery Fancybox for a popup registration form here

I would like the form to come up at the size of 450px by 700px but no matter what I set the height and

24条回答
  •  时光取名叫无心
    2020-12-15 17:48

    after testing every of the above tips (and still having useless scrollbars caused by some inline overflow: scroll at .fancybox-inner) and also trying a lot of other own workarounds, i got rid of the scrollbars with this solution:

        afterShow: function(){
            this.inner.css({
                overflow: 'auto' // or 'no'
            });
        }
    

提交回复
热议问题