SOLVED: How is the overflow removed? Any ideas?

How do I remove the overflow from this?

All it is is a toggle button.

You click on it and it goes on and off.

https://jsfiddle.net/br93hux6/

I can’t figure out how to do this.

Everything I have tried has not worked.

That is all I am trying to do, remove the overflow.

Does anyone have any ideas on how to do this?

How is this able to be done?

I just looked at it on my iPad, not seeing any overflow. Did you figure it out?

Don’t the extra scroll bars mean overflow?

Fixed
https://jsfiddle.net/x1kvwmp9/

body{
  overflow:hidden;
}

Yeah, in your pic it looks like it is overflowing, but it did not happen when I looked at it and there was no overflow hidden.

Just keep in mind that does not fix an overflow that might need to be seen, it just hides the overflow.
https://www.w3schools.com/cssref/pr_pos_overflow.asp

I want to keep vertical scroll.

How do you use overflow: hidden; without disabling vertical scroll?

body{
  overflow:hidden;
}

https://jsfiddle.net/5hsv3to6/1/

the hidden value always clip the content, maybe you want a different value for overflow

1 Like

overflow-x: hidden;

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.