Pop Flex
news | August 05, 2026

How do I stop my scroll bar from appearing?

How To Hide Scrollbars

  1. body { overflow: hidden; /* Hide scrollbars */ } Try it Yourself »
  2. body { overflow-y: hidden; /* Hide vertical scrollbar */ overflow-x: hidden; /* Hide horizontal scrollbar */ } Try it Yourself »
  3. /* Hide scrollbar for Chrome, Safari and Opera */ .example::-webkit-scrollbar { display: none; }

How can I hide scrollbar in iframe but still scroll?

1. Set the overflow of the parent div as hidden. 2. Set the overflow of the child div to auto and the width 200% (or anything more than 100%, or more than the width of the parent – so that the scrollbar gets hidden).

How do I remove scroll from textarea?

By default, the element comes with a vertical scrollbar. It helps the user to enter and review their text by scrolling up and down. We need to set the CSS overflow property to “hidden” so as to hide the scrollbar.

How do I hide the scroll bar in Excel?

Hide or display scroll bars in a workbook

  1. Click the File tab.
  2. Click Options, and then click the Advanced category.
  3. Under Display options for this workbook, clear or select the Show horizontal scroll bar check box and Show vertical scroll bar check box to hide or display the scroll bars.

How do I get rid of the scroll bar on a Web page?

For disabling the scrollbars, you can try setting html, body { overflow: hidden } ; I think some browsers may not honor this. (Wouldn’t it be better to just create a page that fits into the viewport, so that the scrollbars aren’t shown?)

Why are there 2 scrollbars?

2 Answers. You’re basically getting a double scrollbar because your giving the body min-height of 100vh AND setting an overflow. It appears this was done to keep the menu in the correct position on mobile devices.

How do I turn off iframe overflow?

Use overflow-y:hidden; then the vertical scroll will be hidden.