Something is causing an unwanted horizontal scrollbar to appear on the page.
⚡ Quick Fix (TL;DR)
The Culprit: An element somewhere on the page is rendering wider than the actual viewport.
The Fix: Hide horizontal overflow at the body level. Use this carefully as a general habit, since it can conceal a real underlying layout problem rather than fixing it – but on this site specifically, it is also the confirmed, deliberate fix for the known full-bleed 100vw scrollbar issue that several pages have hit (see the matching Error Guide entry): when a full-bleed element is the actual cause, this is the correct fix, not a workaround.
body {
overflow-x: hidden;
}Tagged in :
More from the field
Bisect to an Empty Baseline Before Trusting Any Single Theory
.
Multiple plausible-sounding theories for a bug each turned out to be wrong when actually tested – time was spent building fixes…
A Security Dashboard’s Activity Log Can Lag a Full Day Behind Real Time
.
Trying to check a security tool’s activity log for an event that had just happened showed nothing at all.