CSS HOW-TOCSS TemplatesLink listContactSitemap

TIP: Permanent Scroll Bars

Centered layouts with little content and therefore without a vertical scroll bar jump to the left if a page with a lot of content is loaded into such a layout. This makes for a jittery design and can be easily avoided.

These two lines will permanently add scroll bars, and thus avoid this problem.

html { height: 100% } 
body { min-height: 101%; }