Answers for "overflow always show scrollbar"

CSS
1

css show scrollbar if overflow

/*You can automatically show a scrollbar IF there is overflow with  this: */
body {
  overflow:auto;
}
/*If you want to always show a scrollbar, use this: */
body {
  overflow:scroll;
}
Posted by: Guest on April-18-2021
0

html always show scrollbar

jQuery shouldn't be required. You could try adding the CSS:

body    {overflow-y:scroll;}
This works across the latest browsers, even IE6.
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language