JavaScript scrolling issues
Datum
💡 Developer tip: Flexbox & scroll targets
Flex containers on sections that target scrollIntoView() or similar scroll mechanisms can massively affect the scroll position and visibility. Particularly problematic: display: flex; flex-direction: column; on the section itself.
Tip: If sections only contain text or dynamic triggers, it is better to use a normal block layout (display: block) or apply Flex only to inner wrappers (.content-inner). This keeps scroll targets stable and visible.







