0

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

1

I need to make this page unscrollable

vimuth
  • 5,064
  • 33
  • 79
  • 116
  • It would be great to see some html+ccs of yours. One of the solutions is: body { overflow: hidden; /* Hide scrollbars */ } – lvil Mar 15 '23 at 12:05
  • Does this answer your question? [Hiding the scroll bar on an HTML page](https://stackoverflow.com/questions/3296644/hiding-the-scroll-bar-on-an-html-page) – Daniel Beck Mar 15 '23 at 12:48

1 Answers1

1

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