固定宽度高度会导致不必要的滚动-Chrome扩展程序

时间:2018-10-22 14:25:47

标签: css google-chrome-extension

我正在使用具有360px640px尺寸固定窗口的Chrome扩展程序。我的内容div的高度小于640px,但仍会添加滚动。我不明白我在HTML正文标签中添加了以下CSS。

 body{ width: 360px; height: 640px; overflow:hidden}

<html>
<head>
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, height=device-height, viewport-fit=cover">
    <style>
  body{ width: 360px; height: 640px; overflow:hidden}

    </style>
</head>

    

        Chrome扩展     

1 个答案:

答案 0 :(得分:0)

Chrome扩展弹出窗口的最大尺寸为800 X 600像素。如果容器的宽度或高度大于这些尺寸,将导致滚动。