如何控制chrome扩展中的框架高度和宽度?
我正在使用 chrome 扩展。
单击此处的按钮我需要打开菜单。 当工具栏加载到内存中时,它会为菜单项留出空间,我想在页面加载时将其删除。
I am working with chrome extension.
Here in button click i required to open a menu.
When toolbar loaded in memory it make a space for menu item I want to remove it in page load.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设弹出页面上没有高于 100px 的可见元素:
如果这不起作用,那么某些元素仍然被认为是可见的(Chrome 对此很挑剔)。
解决这个问题的最佳方法是使用弹出检查器。
和
元素的高度
height
、overflow:hidden
、float:left
、display:none
在容器 div 及其子元素上,直到弹出窗口缩小到所需的高度Assuming there is no visible elements taller than 100px on the popup page:
If this doesn't work then some element is still considered visible (Chrome is picky about this).
The best way to figure it out would be to use the popup inspector.
<html>
and<body>
elementsheight
,overflow:hidden
,float:left
,display:none
on a container div and its children until popup shrinks to the required height