Answers for "css overflow only show scrollbar when needed"

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
1

scrollbar appear only when needed

overflow: auto
Posted by: Guest on August-27-2020
0

show scroll only when overflow

overflow: auto;
Posted by: Guest on May-11-2020

Code answers related to "css overflow only show scrollbar when needed"

Browse Popular Code Answers by Language