popup.html - 更改宽度?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5020953/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 06:46:20  来源:igfitidea点击:

popup.html - change width?

htmlgoogle-chrome-extension

提问by Skizit

How do I change the width of popup.html? I've attempted changing the width of the div in it but that seems to have no effect.

如何更改 popup.html 的宽度?我尝试更改其中 div 的宽度,但这似乎没有效果。

Here is what I've tried...

这是我尝试过的...

<div id='poppingup' style = "min-width: 300px; display:none">

回答by serg

Popup width is determined by the visible content, so either make your div visible or apply min-widthto body:

弹出窗口宽度由可见的内容决定的,所以无论是让你的div可见或适用min-widthbody

body {
    min-width:300px;
}

(there is also a limit on max width, I think it is 800px)

(最大宽度也有限制,我认为是 800px)

回答by legendlee

I tried to change the width of body too, but it didn't work. You can set the width of html tag:

我也试图改变身体的宽度,但没有奏效。您可以设置html标签的宽度:

<html xmlns="http://www.w3.org/1999/xhtml" style="min-width:600px;">

It worked in my project.

它在我的项目中起作用。

回答by Jdruiter

Changing the css didn't work for me.

更改 css 对我不起作用。

You can do it with javascript:

你可以用 javascript 做到这一点:

<script>
window.resizeTo(1920, 768);
</script>

Or if you want to accomodate all screen sizes:

或者,如果您想容纳所有屏幕尺寸:

<script>
var newheight = window.height * (5/10);
var newwidth = window.width * (7/10);
window.resizeTo(newheight, newwidth);
</script>