之前的项目在一次移植之后莫名其妙在浏览器出现了滚动条的问题,经观察发现是浏览器自带的user agent stylesheet生效导致的,因此在项目中的index.html中添加样式设置来屏蔽默认样式。
index.html也可能在别的目录中
<style>
body {
margin: 0;
padding: 0;
}
html {
height: 100%;
width: 100%;
position: fixed;
}
</style>
添加样式代码即可,滚动条已消失