英文:
How to remove scrollbar in angular, css, js or html?
问题
我是前端新手,我已经搜索了这个问题,没有找到答案。有没有办法从这个图像页面中移除滚动条?或者有一些方法使页面高度稳定?
我的HTML页面
我需要使这个页面无法滚动。
英文:
I am new in frontend, I have searched this issue and didn't find answer. Is there any way to remove scrollbar from this page in img? Or some ways to make page height stable?
my html page
I need to make this page unscrollable
答案1
得分: 1
要在Angular应用程序中删除滚动条,您可以将CSS应用于body元素,将overflow属性设置为hidden。在您的Angular组件的CSS文件中添加以下内容:
body {
overflow: hidden;
}
英文:
To remove the scrollbar in an Angular app, you can apply CSS to the body element to set the overflow property to hidden.
In your Angular component's CSS file, add
body {overflow: hidden;}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论