我正在使用具有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扩展

最佳答案

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

09-25 20:28