我正在用电子制作Web浏览器,但遇到一个问题,即在Web视图中打开的页面无法调整为窗口大小,并且超出了范围。
以下是该问题的图片:
如果有人知道如何帮助我,我将非常感谢。
答案 0 :(得分:0)
将此CSS添加到您的window.html页面:
/* make sure that the body fills the entire window */
body {
width:100vw;
height:100vh;
margin:0px;
}
/* make sure that the webview element fills the entire body*/
webview {
height:100%;
width:100%;
}