我正在开发具有 360px640px 尺寸的固定窗口的 Chrome 扩展程序。我的内容 div 的高度小于 640px,它仍然添加滚动。我不明白。我在 HTML、body 标签中添加了以下 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>