Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
 
PREVIOUS NEXT
Tagged: #css #show #scrollbar #overflow
ADD COMMENT
Topic
Name
4+3 =