문제

I'm searching a way to prevent your whole body layout to resize when a scroll bar appears to the right. I want my body to stay at the exact same position when you switch from one html file to another, but the second one contains more content than the other, so it creates a scroll bar to the right of your browser. The scroll bar makes my body move a tad bit to the left because it's centered. How can I prevent this using only html and css? (no scripts)

도움이 되었습니까?

해결책

body {
   overflow-y: scroll;
}

That will force the scrollbar container to be always visible, even when there's no scrollbar, keeping your content centered.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top