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
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
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;}