Lately, I've been facing a small issue with a website plenarto.github.io that has been bothering me for the past few days.
There is an odd white margin that mysteriously appears on the right side of the website whenever you access it using IE11. This margin runs from top to bottom throughout the entire site, and strangely, it cannot be targeted or bordered using developer tools like so:
* {
border: solid red 1px;
}
The presence of this white margin results in an additional horizontal scrollbar at the bottom of the page.
To eliminate this issue, adding overflow-x: hidden to the html and body tags seems to do the trick. However, this solution gives rise to another problem related to vertical scrolling (possibly linked to smooth scrolling). With overflow-x: hidden, IE users can't scroll through the site using a mouse wheel, and internal links stop working in Chrome.
I have been attempting to find a resolution to this conundrum for quite some time...
If anyone has insight into what might be causing this peculiar margin and how to remove it without resorting to overflow-x: hidden, your assistance would be greatly appreciated!
Thank you in advance for taking the time to help!