Showing posts with label scrollbar. Show all posts
Showing posts with label scrollbar. Show all posts

Tuesday, January 31, 2012

Layout Jumps Left If Vertical Scrollbar Appears - HOW TO FIX IN CSS

Looks good in IE (5.5 <= 8 beta), FF (2,3), Chrome and Opera.
html {
  overflow-y: scroll;
}

Friday, November 19, 2010

Avoid Scrollbars when using JQuery Accordion

Use the fillSpace and clearStyle options and set them to TRUE.
$("#accordion").accordion({
    fillSpace: true,
    clearStyle: true
});