How to use 'window.open' to create with scrollbar in firefox?

后端 未结 2 1169
醉话见心
醉话见心 2020-12-14 14:43

How do I use \'window.open\' to create a new window with scrollbars in firefox?

thanks!

2条回答
  •  时光说笑
    2020-12-14 15:16

    This should do it:

    window.open("http://example.com", "name", "scrollbars=1,width=100,height=100");
    

    but note that Firefox will only show scrollbars when the content is larger than the window.

    To force Firefox to always show a scrollbar (like Internet Explorer does) you need this in the stylesheet of the HTML that's being shown in the popup:

    html {
        overflow: -moz-scrollbars-vertical;
    }
    

提交回复
热议问题