hr scroll bar
hi guys maybe someone of you know how to fix this as i hover over the body element it still has this space in the right side
6 Replies
that usually happens when some element is overflowing outside the document
because mobile browsers have to support websites with no responsivity, they add that extra space and scale everything down to fit the viewport
It can be helpful to add outlines to everything to see what's sticking out
```css
,::before, *::after {
outline:2px solid red;
}
what's seems to be the problem of that?
Hard to say from a single screenshot but maybe one of the wrappers around what looks to be maybe a hamburger menu icon (as a side note that is going to need better contrast on that background; the colour will not pass accessibility).
Do you have a link to this site or a codepen or codesandbox ?
thank you i just spot the problem and fix it:thumbup: